/* ===== ОСНОВНЫЕ СТИЛИ (ИСПОЛЬЗУЮТСЯ НА СТРАНИЦЕ) ===== */

:root {
    --mp-bg: #f8f8f8;
    --mp-primary: #008c3a;
    --mp-highlight: #aaaaaa;
    --mp-notification: #d73235;
    --mp-notification-hover: #b22528;
    --mp-link: #2c54bb;
    --mp-hover: #e6f4ec;
    --mp-btn-hover: #00692c;
    --mp-btn-disabled: #F5F5F5;
    --mp-statusgreen: #cce8d8;
    --mp-statusyellow: #fff3b3;
    --mp-statusflash: #ffd400;
    --mp-statusred: #f3c2c3;
    --mp-statusgrey: #dedede;
    --mp-white: #fdfdfd;
    --mp-black: #000000;
    --mp-cart-blue: #1D6EF6;
    --mp-globalmw: 1840px;
    --mp-font-family: 'Inter', sans-serif;
    --mp-font-fa: 'Font Awesome 5 Free';
    --mp-font-bi: 'bootstrap-icons';
}

body {
    width: 100%;
    min-width: 100%;
}

/* Шапка корзины */
.cart-header {
    text-align: center;
    color: #aaa;
}

.heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 15px;
}

.heading .left-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

.heading .left-group p {
    font-size: 22px;
    font-weight: 600;
    margin: 0;
}

.item-count-text {
    font-size: 14px;
    font-weight: 400;
    color: var(--mp-highlight);
}

/* Переключатель Маркетплейс/Фудхолл */
.cart-switch-container {
    display: flex;
    justify-content: center;
    height: 37px;
}

.food-check {
    display: flex;
    background-color: #EBEBEB;
    border-radius: 50px;
    height: 100%;
}

.shop-button,
.food-button {
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: transparent;
    color: #666;
    height: 100%;
    line-height: 21px;
}

.shop-button.active,
.food-button.active {
    background-color: var(--mp-primary);
    color: #ffffff;
}

.shop-button:hover:not(.active),
.food-button:hover:not(.active) {
    background-color: var(--mp-primary);
    color: #ffffff;
}

/* Заголовок с выбором всех товаров */
.cart-title-container {
    display: flex;
    justify-content: left;
    margin-bottom: 15px;
}

.cart-option-select-all-container {
    display: flex;
    flex-direction: row;
    width: 33%;
    justify-content: left;
    margin-bottom: 0;
    align-items: center;
}

.cart-option-select-all-container .green-checkbox {
    margin-top: 10px;
    margin-bottom: 0;
}

.cart-option-delete-container {
    display: flex;
    flex-direction: row;
    width: 33%;
    justify-content: right;
    align-items: center;
}

.cart-delete-items-btn {
    color: #AAAAAA;
    background-color: white;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.cart-delete-items-btn:active,
.cart-delete-items-btn:hover {
    color: var(--mp-primary);
    background-color: white;
}

.short-text {
    display: none;
}

/* Модальное окно удаления */
.modal-delete {
    width: 250px;
    height: 96px;
    background-color: #FFFFFF;
    position: absolute;
    z-index: 1000;
    right: -30px;
    top: 85px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 2px 6px 0 #0000001A;
}

.modal-title {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    font-family: 'Golos Text', serif !important;
    margin: 8px 14px 10px;
}

.modal-delete-buttons {
    display: flex;
}

.modal-delete-btn {
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    font-family: 'Golos Text', serif !important;
    border-radius: 6px;
    width: 106px;
    height: 29px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.btn-delete {
    background-color: var(--mp-primary);
    color: #FFFFFF;
    margin: 0 10px 0 14px;
}

.btn-cancel {
    color: #000000;
    background-color: #FFFFFF;
}

/* Общие стили корзины */
#cart-page *:not(.fa) {
    font-family: 'Golos Text', sans-serif;
}

#cart-page .cart-list {
    background-color: #FFFFFF;
    border: 1px solid var(--mp-highlight);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 30px;
}

#cart-page .cart-list>.cart-header-items {
    border-radius: 10px;
    padding: 10px;
    color: #616161;
    font-size: 14px;
}

#cart-page .cart-list>.cart-header-items span {
    font-weight: 600;
    font-size: 18px;
}

#cart-page .cart-list>.cart-header-items a {
    font-weight: 400;
    font-size: 14px;
    color: var(--mp-cart-blue);
}

.cart-gifts-block .gifts-line-title a.gift-more-info,
.gift-card-block a {
    color: var(--mp-cart-blue);
    cursor: pointer;
}

#cart-page .cart-item {
    border-bottom: none;
    width: 100%;
}

#cart-page .cart-item.cart-item-disabled {
    opacity: 0.6;
}

#cart-page .cart-icon {
    width: 18px;
    height: 18px;
}

/* Таблица товаров */
#cart-page .items-list-table {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
}

#cart-page .checkbox_cell {
    width: 30px;
}

#cart-page .checkbox_cell>label {
    margin: 0;
    padding: 0;
}

#cart-page .green-checkbox>span::before {
    width: 18px;
    height: 18px;
}

#cart-page .image_cell {
    min-width: 75px;
}

#cart-page .image_cell img {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    transition: all 0.3s ease-in;
}

#cart-page .image_cell img:hover {
    opacity: 0.8;
    transition: all 0.3s ease-in;
}

#cart-page .product_title_cell {
    flex: 2;
    padding: 5px 0 5px 15px;
    text-align: left;
}

#cart-page .info_cell {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: -30px;
}

#cart-page .info_cell .counter_cell {
    flex: 1;
}

#cart-page .info_cell .price_cell {
    flex: 2;
    padding-left: 10px;
    text-align: left;
}

.restaurant-comment button {
    border: none;
    background-color: transparent;
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    margin-top: 10px;
    color: var(--mp-cart-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.restaurant-comment button::before {
    content: '+';
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    width: 18px;
    height: 18px;
    color: var(--mp-cart-blue);
}

.restaurant-comment button.expanded::before {
    content: '−';
}

.cart-input.comment {
    width: 50%;
    max-height: 44px;
}

.comment-wrapper {
    margin-top: 10px;
}

/* Счетчик количества */
#cart-page .count-input {
    border: 1px solid var(--mp-highlight);
    padding: 1px 0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 400;
    width: 90px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

#cart-page .count-input .input-nu {
    color: #000000;
    border: 0;
    margin: 0;
    background: none;
    font-weight: 600;
}

#cart-page .input-group .btn {
    padding: 5px 7px;
}

.count-input .btn-number {
    background: none;
}

.count-input .btn-number:hover .fa {
    color: #4285f4;
}

.count-input .btn-number .fa {
    color: #b9b9b9;
    font-size: 14px;
}

/* Цены и скидки */
#cart-page .cart_items .cashback-sum {
    background-color: rgba(0, 140, 58, 0.1);
    position: unset;
    width: max-content;
}

.cashback_icon {
    width: 14px;
    height: 14px;
}

#cart-page .price_item {
    white-space: nowrap;
}

#cart-page .cart_items .old-price {
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    color: var(--mp-highlight);
}

.stock_count {
    color: #d73235;
    font-size: 12px;
    margin-top: 5px;
}

/* service */
.service {
    position: relative;
    margin-bottom: 20px;
}

.select_service {
    width: 230px;
    padding: 10px 20px;
    border-radius: 100px;
    background-color: #E6F4EC;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    margin-top: 30px;
}

.service_option {
    width: 230px;
    height: auto;
    padding: 14px;
    background-color: #FFFFFF;
    border-radius: 10px;
    position: absolute;
    filter: drop-shadow(0 2px 6px #0000001A);
    display: none;
    margin-top: 10px;
    z-index: 1000;
}

.service_pric {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    font-family: 'Golos Text', serif !important;
}

.service_left {
    display: flex;
    align-items: center;
}

.selected_option {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service_point .green-checkbox > span:before {
    width: 20px !important;
    height: 20px !important;
    margin-top: 7px;
}

.count_services {
    background-color: #008C3A;
    padding: 2px 6px;
    height: 18px;
    width: 18px;
    border-radius: 50px;
    margin-left: 10px;
    text-align: center;
}

.service_space {
    display: none;
    height: 10px;
}

#count_services {
    display: block;
    position: absolute;
    color: #FFFFFF;
    font-size: 10px;
}

.service_checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 1px solid #AAAAAA;
}

.service_space:hover {
    display: block;
}

.service_point {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service_point {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-family: "Golos Text", Montserrat, sans-serif;
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.service_left {
    flex: 1;
    display: flex;
    align-items: center;
}

.service_name {
    font-size: 14px;
    line-height: 1.4;
    cursor: default;
}

.service_right {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    justify-content: space-between;
}

.service_quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: #333;
}

.quantity-btn:hover {
    background: #e8e8e8;
    border-color: #ccc;
}

.quantity-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.quantity-input {
    width: 40px;
    height: 28px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 0 5px;
    font-size: 14px;
    font-family: "Golos Text", Montserrat, sans-serif;
}

.quantity-input::-webkit-inner-spin-button,
.quantity-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
    border-color: green;
    box-shadow: 0 0 0 2px rgba(0, 128, 0, 0.1);
}

.service_price {
    min-width: 70px;
    text-align: right;
    white-space: nowrap;
}

/*services*/

/* Мобильная адаптация */
#cart-page .desktop-hide {
    display: none;
}

#cart-page .phone-hide {
    display: flex;
}

@media (max-width: 768px) {
    #cart-page .phone-hide {
        display: none;
    }

    #cart-page .desktop-hide {
        display: block;
    }

    #cart-page .image_cell {
        min-width: 60px;
    }

    #cart-page .image_cell img {
        width: 60px;
        height: 60px;
        margin-bottom: 5px;
    }

    #cart-page .cart_items .price_cell {
        text-align: start;
    }

    #cart-page .mobile-actions {
        display: flex;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
    }

    #cart-page .mobile-actions .item-action {
        margin-top: auto;
    }

    #cart-page .mobile-actions .item-action a {
        margin-right: 10px;
    }

    #cart-page .mobile-actions .item-action {
        margin-top: unset;
    }

    #cart-page .count-input {
        padding: 0;
        width: 120px;
    }

    #cart-page .item-end {
        display: block;
        margin-top: 20px;
        width: 100%;
        border-bottom: 1px solid var(--mp-highlight);
    }

    #cart-page .info_cell {
        justify-content: space-between;
        align-items: center;
        flex-direction: column-reverse;
        margin-right: 0;
    }

    #cart-page .cart_items .cashback-sum {
        display: inline-block;
    }

    #cart-page .cart_items .old-price {
        display: inline;
    }
}

/* Форма получателя */
#cart-page .form-global {
    max-width: 100%;
}

.cart-input {
    color: #141414;
    width: 100%;
    border-radius: 10px;
    border: 1px solid var(--mp-highlight);
    padding: 10px 25px;
}

.cart-input:valid {
    border: 1px solid var(--mp-highlight) !important;
}

.cart-input:focus {
    outline: none;
    border: 1px solid #474747 !important;
}

.cart-input:read-only {
    background-color: #F0F0F0;
    border: 1px solid #F0F0F0;
}

.cart-input:read-only:focus {
    outline: none;
    box-shadow: none;
    border-color: #F0F0F0 !important;
}

.cart-login-button {
    border: 1px solid #F0F0F0;
    background-color: #F0F0F0;
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 1rem;
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
}

.cart-login-button .text-wrapper {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.blue-text {
    color: #2c54bb;
}

.black-text {
    color: #000000;
}

.cart-login-button::after {
    content: "›";
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    color: #999999;
    flex-shrink: 0;
}

/* Способы получения */
.mini-cart-buttons {
    margin: 20px 0 0 0 !important;
}

#cart-page .cart-button {
    border: 1px solid var(--mp-highlight);
    border-radius: 10px;
    cursor: pointer;
    height: 60px;
    min-height: 60px;
    padding: 5px 5px 5px 10px;
    font-size: 14px;
    max-width: 200px;
    text-align: left;
}

#cart-page .cart-button.active {
    border: 2px solid var(--mp-primary);
}

#cart-page .cart-button .title {
    font-size: 16px;
    font-weight: 600;
    display: block;
}

#cart-page .cart-button .commit {
    color: var(--mp-highlight);
}

#cart-page .cart-button .card-button-footer {
    color: var(--mp-highlight);
}

#cart-page .cart-button .card-button-footer.green {
    color: var(--mp-primary);
}

.standard-delivery {
    max-width: 220px !important;
    padding: 0 !important;
}

/* Время доставки */
#cart-page .cart-button-time {
    height: 60px;
    min-height: 60px;
    padding: 5px 5px 5px 10px;
    font-size: 14px;
    max-width: 200px;
}

#cart-page .cart-button-time .title {
    font-size: 14px !important;
}

#cart-page .cart-button-time.active .title:before {
    content: url('/templates/default/controllers/foodhall/assets/svg/green-check-mark.svg');
    display: inline-block;
    width: 10px;
    height: 15px;
    margin-right: 10px;
}

.delivery-on-time.not-available,
.delivery-on-time.not-available * {
    cursor: not-allowed !important;
}

.cart-button-time.not-available {
    background-color: rgba(245, 245, 245, 1);
}

div:has(> .cart-button-time) {
    max-width: 220px !important;
    padding: 0 !important;
}

/* Способы оплаты */
.pays-types {
    margin-top: 20px;
}

#cart-page .cart-button-small {
    border: 1px solid var(--mp-highlight);
    border-radius: 10px;
    padding: 10px 16px;
    margin-bottom: 20px;
    height: 44px;
    width: 200px;
    cursor: pointer;
}

#cart-page .cart-button-small.active {
    border: 2px solid var(--mp-primary);
}

#cart-page .cart-button-small .title {
    font-size: 14px;
    font-weight: 500;
    display: block;
}

.errors-pays-types {
    color: #dc3545;
}

/* Блок итогов (sticky) */
.sticky-box {
    position: sticky;
    top: 20px;
}

#cart-page h3,
#cart-page .cart-info h3 {
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

#cart-page .cart-info h3>span {
    font-size: 16px;
    font-weight: 400;
    color: var(--mp-highlight);
    position: absolute;
    right: 35px;
    top: 21px;
}

#cart-page .cart-info-data div {
    font-size: 16px;
    font-weight: 400;
    color: #616161;
}

#cart-page .cart-info-data a {
    font-size: 12px;
    color: #2c54bb;
    cursor: pointer;
}

#cart-page .card-gray {
    background-color: #F5F5F5;
    padding: 10px;
    border-radius: 8px;
    margin: 0;
}

#cart-page .text-black,
#cart-page .text-black span {
    color: #000;
}

#cart-page .nowrap {
    white-space: nowrap;
}

#cart-page .sum_delivery span,
#cart-page .total_sum span {
    font-size: 22px;
    color: #000;
    font-weight: 700;
}

/* Кнопка заказа */
.btn-mp.btn-primary {
    background-color: var(--mp-primary);
    border-color: var(--mp-primary);
    color: white;
}

#content_id .btn-mp.btn:disabled {
    background-color: var(--mp-btn-disabled);
    border: 1px solid var(--mp-btn-disabled);
    color: var(--mp-highlight);
}

.work-time {
    color: green !important;
    font-size: 14px !important;
    text-align: center;
    margin-bottom: 5px;
}

.work-time * {
    color: green;
    font-size: 14px !important;
    text-align: center;
    margin-bottom: 5px;
}

.work-time-tomorrow,
.work-time-tomorrow * {
    font-size: 12px !important;
    color: green !important;
}

.order_errors {
    color: red;
}

/* Пустая корзина */
#cart-page .no_items {
    font-size: 26px;
    font-weight: 700;
}

#cart-page .cart_result {
    font-size: 16px;
    font-weight: 400;
    color: var(--mp-highlight);
}

/* Модальные окна */
.modal .modal-content {
    border-radius: 10px;
    padding: 10px;
}

#content_id .modal .close {
    background: transparent;
    font-size: xx-large;
}

#content_id .modal .close span {
    color: #AAAAAA;
}

/* Карты */
#map, .map {
    width: 100%;
    min-height: 400px;
}

#setYandex .delivery_price>div {
    color: var(--mp-highlight);
    font-size: 12px;
    font-weight: 400;
    margin-top: -12px;
}

#setYandex .delivery_price>p {
    color: #000;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
}

#setYandex .delivery_price>p>span {
    color: var(--mp-highlight);
    font-size: 16px;
    font-weight: 700;
}

/* Заголовки */
h1 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0;
}

h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 0;
}

/* Список адресов в яндекс доставке*/
.suggestions-suggestions {
    right: 0 !important;
    left: unset !important;
    top: 38px !important;
}

/* Медиа-запросы */
@media (max-width: 1024px) {
    #cart-page .product_title_cell {
        flex: 1;
    }
    #cart-page .item_count_text {
        display: none;
    }
}

@media (max-width: 991px) {
    .cart-title-container {
        justify-content: space-between;
    }

    .cart-option-select-all-container {
        width: 50%;
    }

    .cart-option-delete-container {
        width: 50%;
    }

    .cart-input.comment {
        width: 100%;
    }
    .cart-login-button {
        width: 100%;
    }
}

@media (max-width: 768px) {
    #cart-page .sm-br {
        display: block;
    }
    #cart-page .item_count_text {
        display: inline;
    }
    #cart-page .price_item {
        display: inline;
    }
}

@media (max-width: 480px) {
    .heading {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .heading .left-group {
        order: 2;
    }

    .heading .cart-switch-container {
        order: 1;
        width: 100%;
        margin: 0 0 15px;
    }

    .food-check {
        width: 100%;
    }

    .shop-button,
    .food-button {
        flex: 1;
        text-align: center;
        padding: 8px 0;
    }

    .cart-delete-items-btn .full-text {
        display: none;
    }

    .cart-delete-items-btn .short-text {
        display: inline;
    }
}

@media (max-width: 1400px) and (min-width:992px) {
    .count-input {
        width: 100%;
    }
    .count-input .btn {
        padding: 5px 0;
    }
    .input-group-btn {
        width: 33%;
    }
}

.bonus-block {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    background-color: #F5F5F5;
    width: 100%;
    padding: 11px 16px;
    border-radius: 8px;
    margin: 16px 0;
}

.bonus-block__label {
    font-family: "Golos Text", Montserrat, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: #616161;
    word-break: break-word;    
}

.bonus-block__controls {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;        
}

.bonus-block__amount {
    font-family: "Golos Text", Montserrat, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    color: #008c3a;
}

.bonus-toggle {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    margin: 0;
    cursor: pointer;
}

.bonus-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.bonus-toggle__slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background-color: #ccc; */
    border-radius: 100px;
    border: 1px solid #999999;
    transition: 0.3s;
}

.bonus-toggle__slider:before {
    position: absolute;
    content: "";
    height: 14px;
    width: 14px;
    left: 5px;
    top: 4px;
    background-color: #999999;
    border-radius: 50%;
    transition: 0.3s;
}

input:checked + .bonus-toggle__slider {
    background-color: #008c3a;
}

input:checked + .bonus-toggle__slider:before {
    transform: translateX(16px);
    background-color: white;
    border: 1px solid white;
}


/* НЕИСПОЛЬЗУЕМЫЕ СТИЛИ оставлю на всякий случай */

/*
.food_button.active {
    background-color: #00692c;
    z-index: 100;
}

.food_button:focus,
.food_button:hover,
.food_button:active {
    background-color: #00692c;
}

.deldel {
    font-size: 12px;
    color: #aaa;
}

.cart-total {
    background: #f2f3f5;
    color: #37404e;
    padding: 1.3rem 0px;
    border-radius: 4px;
}

.free-develery a {
    color: #fff;
    text-decoration: underline;
}

.free-develery span {
    background: #fff;
    color: #4285F4;
}

.cart-process .cart-process-title {
    font-weight: 700;
    font-size: 17px;
}

@media (max-width: 450px) {
    .cart-process .cart-process-title {
        font-size: 20px !important;
    }
}

.cart-buttons {
    margin: 0 auto;
}

.add_order {
    margin: 0 auto;
}

#ordercomfirm {
    margin: 0 auto;
}

.cart-buttons .cart-button {
    font-size: unset;
    border: 1px solid #d6d6d6;
    font-size: 15px;
    margin-bottom: 7.5px;
    margin-top: 7.5px;
    padding: 10px 10px;
    cursor: pointer;
    border-radius: 4px;
}

.cart-buttons .cart-button:hover {
    opacity: 0.7;
}

.cart-buttons .cart-button .title {
    display: block;
    text-transform: none;
}

.cart-buttons .cart-button .commit {
    display: block;
    color: #828282;
    font-weight: normal;
    text-transform: none;
    font-size: 12px;
}

.cart-totals {
    text-align: center;
    font-weight: 20px;
}

.cart-totals .sum {
    font-size: 17px;
    margin-right: 25px;
    font-weight: 700;
}

.cart-totals .sum .value {
    color: #828282;
}

.cart-save {
    text-align: center;
}

.cart-button.disabled {
    opacity: 0.3;
}

.map .items-list {
    height: 380px;
    overflow-y: auto;
}

.map .items-list .item {
    padding: 10px;
    font-size: 12px;
    border: 1px solid #fff;
}

.map .items-list .item a {
    color: #262626;
}

.map .items-list .item.active .title {
    color: #009029;
    font-weight: bold;
}

.map .items-list .item .payments {
    margin-top: 5px;
}

.map .items-list .item .payments img {
    display: inline-block;
    width: 11px;
    margin-top: -4px;
}

.map .items-list .item .payments span {
    display: inline;
}

.map .items-list .item.active {
    border: 1px solid #ffaa55;
}

.map .items-list .item.active .title {
    color: #009029;
}

.time {
    margin-top: 5px;
    color: #999;
}

#ordercomfirm textarea {}

.oversized {
    color: #DB4437;
    text-align: left;
    font-size: 13px;
    margin-bottom: 20px;
}

.cart-buttons .active,
.pays-types .active {
    border-color: #0F9D58;
    background: none;
}

.map .city-search-box {
    height: 380px;
    overflow-y: auto;
}

.setPvz {
    height: 584px !important;
}

.sklad-icon-title {
    color: #000;
    font-weight: bold;
    position: absolute;
    left: 40px;
    background: #fff;
    padding: 5px;
    border-radius: 5px;
    top: -15px;
    width: 150px;
    text-align: left;
}

#setSkladMap {}

.city-search-box .item {}

.kd-time {}

.kd-form input,
.kd-form .dropdown-toggle {
    border-radius: 5px;
    background-color: #fff;
}

.kd-time .dropdown-toggle {
    color: #828282;
    border: 1px solid #e6e8ea;
}

.kd-time .dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 17px;
}

.kd-time .dropdown-menu {
    width: 100%;
}

.kd-time .dropdown-item {
    display: block;
    float: left;
    border: 1px solid #e6e8ea;
    width: auto;
    clear: unset;
    margin: 5px;
    padding: 0px 20px;
    cursor: pointer;
    text-align: center;
}

.kd-time .dropdown-item.active {
    border-color: #ff9329;
}

.develery-item span.total {
    border-radius: 5px;
    margin: 0px;
    padding: 0px 7px;
}

@media (max-width: 650px) {
    .map .city-search-box {
        height: 250px;
        overflow-y: auto;
    }

    .setPvz .map .items-list {
        height: 200px;
        overflow-y: auto;
    }

    .setPvz {
        height: 250px !important;
    }

    #map, .map {
        width: 100%;
        min-height: 250px;
    }
}

.payments_text {
    margin-bottom: 20px;
    color: #DB4437;
    text-align: left;
    font-size: 13px;
}

#cart-page .btn-mp.active {
    color: var(--mp-white);
    background-color: var(--mp-primary);
    border-color: var(--mp-primary);
}

#cart-page .btn-mp.active:hover {
    background-color: var(--mp-btn-hover);
    border-color: var(--mp-btn-hover);
}

#cart-page .product-image {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
}

.service_space {
    display: none;
    height: 10px;
}

.service_space:hover {
    display: block;
}

.select_service:hover ~ .service_option,
.service_option:hover {
    display: flex;
    flex-direction: column;
}
*/