/* Minification failed. Returning unminified contents.
(54,35): run-time error CSS1039: Token not allowed after unary operator: '-main-brd-grey-dark-color'
(68,28): run-time error CSS1039: Token not allowed after unary operator: '-main-brd-grey-dark-color'
(244,22): run-time error CSS1039: Token not allowed after unary operator: '-main-orange-color'
(310,22): run-time error CSS1039: Token not allowed after unary operator: '-main-brd-grey-dark-color'
(638,30): run-time error CSS1039: Token not allowed after unary operator: '-main-orange-color'
 */
.cart-page {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 10px;
}

@media (max-width: 736px) {
    .cart-page {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.cart-page .total-comment {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px;
}

.cart-page .shopping-cart-wrapper, .cart-page .comments, .cart-page .total {
    border: 1px solid #cbd6e2;
    border-radius: 5px;
    overflow: hidden;
}


@media (max-width: 768px) {
    .cart-item-details {
        flex-direction: column;
    }
    .cart-title {
        display: none !important;
    }
    .info-label {
        display: inline-block !important;
        font-weight: 600;
        margin-right: 7px;
    }
}

.cart-page .cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-page .cart-item-wrapper {
    display: flex;
    gap: 5px;
}

.cart-page .cart-item-wrapper.cart-title {
    border-bottom: 1px solid var(--main-brd-grey-dark-color);
    font-weight: bold;
}
.cart-page .cart-item-wrapper.cart-title > div {
    padding: 5px 0;
}
.cart-page .cart-item-wrapper .cart-item-image-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    padding: 3px 0;
    border: 1px solid var(--main-brd-grey-dark-color);
}

.cart-page .cart-item-image {
    display: flex;
    align-items: center;
    margin-left: 6px;
    width:40px;
}

.cart-page .cart-item-details {
    display: flex;
    flex-grow: 1;
    gap: 8px;
}

.cart-page .cart-item-details .cart-item-name {
    flex-grow: 3;
    flex: 1;
}

.cart-page .cart-item-details .cart-item-price{
    width:72px;
}
.cart-page .cart-item-details .cart-item-quantity {
    width: 100px;
}

.cart-page .cart .error-text {
    font-size: 14px;
}

.cart-page .cart-item-details .cart-item-quantity input {
    width: 100%;
}

.cart-page .cart-item-details .align-center {
    display: flex;
    align-items: center;
}

.cart-page .cart input {
    padding: 3px;
    border: 1px solid #989898;
    font-size: 14px;
}

.cart-page .cart-item-action {
    display: flex;
    margin-right: 6px;
    width:25px;
    align-items:center;
    justify-content:end;
}
.cart-page button.close {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ff5a5f;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
button.close:hover {
    background-color: #db1427;
}
.cart-page .cart .comment {
    border-bottom: 1px solid #cbd6e2;
    padding: 0 6px 12px 6px;
}

    .cart-page .comment .comment-textbox {
        width: 100%;
        text-align: left;
    }


.cart-page .cart .flex-center {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.cart-page .cart .info-label {
    display: none;
}

.error-input {
    border: 1px solid #db1427 !important;
    color: #db1427 !important;
}

.error-text {
    color: #db1427;
}

.success-msg {
    color: #0b5641;
    text-align: center;
    padding: 5px;
    font-size: 18px;
}

.cart-page .cart .cart-price {
    text-align: right;
}


.cart-page .comments textarea {
    resize: none;
    padding: 0;
    margin: 0;
    height: 100px;
    width: 100%;
    border: 0;
    outline: 0;
}

    .cart-page .comments textarea:focus {
        border: 0;
        outline: 0;
    }

.cart-page .title {
    font-size: 16px;
    background: #e2e7ef;
    padding: 10px 15px;
}

.cart-page .total-subsection {
    padding: 5px;
}

.cart-page .total-desc-price, .checkout-page .total-desc-price {
    text-align: right;
    font-size: 16px;
}

.cart-page .total-desc-price-total, .checkout-page .total-desc-price-total {
    text-align: right;
    font-size: 24px;
    font-weight: 600;
}

.cart-page .total-desc-fees {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 3px;
    font-size: 15px;
}

    .cart-page .total-desc-fees .total-desc-fees-title {
        padding-left: 5px;
    }

.cart-page .sub-title {
    padding: 5px 0;
    font-weight: 600;
    font-size: 15px;
    color: #121212;
}

.checkout-page .total-subsection .btn-checkout + .btn-checkout {
    margin-top: 10px;
}



.btn-checkout, .main-btn {
    width: 100%;
    border-radius: 4px;
    background: var(--main-orange-color);
    color: white;
    border: 0;
    outline: 0;
    padding: 7px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
}

.notice-section {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #db1427;
    margin: 0 5px;
}

.pay-subsection {
    padding: 5px;
}

.pay-subsection select{
    width: 100%;
    padding: 5px;
    border-radius: 2px;
}

.notice-section .notice-title {
    font-weight: 700;
    text-transform: uppercase;
}

.notice-section p {
    margin: 0;
    padding: 5px 0 0 0;
    color: #212121;
    font-size: 13px;
}

.btn-checkout:disabled {
    background: #fcad69;
    cursor: default;
}


.btn-checkout:focus, .btn-checkout:active {
    outline: 0;
}

.cart-page .cart-close {
    color: #7a7a7a;
    transition: color linear 350ms;
    display: flex;
    align-items: center;
}

.cart-close:hover {
    color: #dd0000;
}

.cart-page .cart-close .close {
    cursor: pointer;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    font-size: 20px;
    background: var(--main-brd-grey-dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.close::before {
    /*content: 'x';
    text-align: center;
    font-size: 20px;
    line-height: 20px;
    font-weight: 300;
    font-family: Arial, sans-serif;*/
}

.close {
}

.checkout-page {
    margin-top: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-gap: 10px;
}

@media (max-width: 736px) {
    .checkout-page {
        grid-template-columns: 1fr;
        grid-gap: 0;
    }
}

.checkout-page .main-details-section {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 5px;
}

.checkout-page .section {
    border: 1px solid #cbd6e2;
    border-radius: 5px;
}

    .checkout-page .section .title {
        font-size: 16px;
        background: #e2e7ef;
        padding: 10px 15px;
    }

    .checkout-page .section .btn-menu-section {
        background: #e2e7ef;
        padding: 5px;
    }

@-webkit-keyframes fadeinout {
    0%,100% {
        opacity: 0;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fadeinout {
    0%,100% {
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    70% {
        opacity: 1;
    }
}

.checkout-page .form-field-grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
}

@media (max-width: 480px) {
    .checkout-page .form-field-grid.break-mobile {
        grid-template-columns: 1fr;
    }
}

.checkout-page .form-field-grid .form-field {
    padding: 5px 10px;
}

.checkout-page .form-field input, .checkout-page .form-field select {
    width: 100%;
    border-radius: 2px;
    padding: 3px;
    border: 1px solid #8d8d8d;
}

.textarea-wrapper {
    padding: 5px;
}

    .textarea-wrapper textarea {
        resize: none;
        padding: 0;
        margin: 0;
        height: 100px;
        width: 100%;
        border: 0;
        outline: 0;
        font-size: 15px;
    }

.checkout-page .comments {
    margin-bottom: 5px;
}

.checkout-page .total-subsection {
    padding: 5px;
}

.checkout-page .sub-title {
    padding: 5px 0;
    font-weight: 600;
    font-size: 15px;
    color: #121212;
}


.checkout-page .total-desc-fees {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 3px;
    font-size: 15px;
}

.checkout-page .checkout-cart-item {
    display: flex;
    flex-direction: row;
}

    .checkout-page .checkout-cart-item .checkout-cart-item_name {
        flex: 3;
    }

    .checkout-page .checkout-cart-item .checkout-cart-item_comments {
        flex: 2;
    }

    .checkout-page .checkout-cart-item .checkout-cart-item_price {
    }

    .checkout-page .checkout-cart-item .checkout-cart-item_quantity {
    }

.checkout-page .cart-content-wrapper {
    overflow-x: auto;
}

    .checkout-page .cart-content-wrapper table {
        border-collapse: collapse;
        table-layout: fixed;
        width: 100%;
    }

        .checkout-page .cart-content-wrapper table th,
        .checkout-page .cart-content-wrapper table td {
            border-collapse: collapse;
            border-bottom: 1px solid #cbd6e2;
            min-width: 100px;
            padding: 8px 4px;
        }

        .checkout-page .cart-content-wrapper table th {
            font-weight: 600;
            font-size: 15px;
            color: #121212;
            text-transform: capitalize;
        }

        .checkout-page .cart-content-wrapper table .price,
        .checkout-page .cart-content-wrapper table .uom,
        .checkout-page .cart-content-wrapper table .quantity {
            min-width: 65px;
            width: 65px;
            text-align: right;
        }

/*.checkout-page .cart-content-wrapper table .uom {
            width: 50px;
            text-align: right;
        }

        .checkout-page .cart-content-wrapper table .quantity {
            width: 50px;
            text-align: right;
        }*/

.checkout-page .checkout-items {
    display: grid;
    grid-template-columns: 3fr 2fr auto auto auto;
    overflow-x: auto;
}

    .checkout-page .checkout-items .column-title {
        font-weight: 600;
        font-size: 15px;
        color: #121212;
    }

    .checkout-page .checkout-items .cart-item {
        padding: 8px;
        border-bottom: 1px solid #cbd6e2;
    }

.checkout-page .time-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}

.checkout-page .schedule-times-boxes, .checkout-page .pickup-dates-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(145px,1fr));
    grid-gap: 3px;
}

.ie11 .checkout-page .schedule-times-boxes,
.ie11 .checkout-page .pickup-dates-boxes {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.checkout-page .schedule-times-boxes > .select-schedule,
.checkout-page .pickup-dates-boxes > .select-date-box {
    border: 1px solid #8d8d8d;
    text-align: center;
    cursor: pointer;
    color: #1b1b1b;
}

.checkout-page .schedule-times-boxes .select-schedule.active,
.checkout-page .pickup-dates-boxes .select-date-box.active {
    background: #FFCC99;
}

.checkout-page .schedule-times-boxes .select-schedule.disabled {
    background: #ffe5e8;
    color: #acacac;
    cursor: not-allowed;
    border-color: #acacac;
}

    .checkout-page .schedule-times-boxes .select-schedule.disabled:hover {
        background: #ffe5e8;
    }

    .checkout-page .schedule-times-boxes .select-schedule.disabled .date-title {
        border-color: #acacac;
    }

.checkout-page .schedule-times-boxes .select-schedule:hover {
    background: #FFCC99;
}

.checkout-page .time-left-order {
    font-size: 17px;
    font-weight: 700;
}

.checkout-page .schedule-times-boxes .date-title,
.checkout-page .select-date-box.date-title {
    border-bottom: 1px solid #8d8d8d;
    font-weight: 700;
    padding: 5px;
    font-size: 17px;
}

.checkout-page .schedule-times-boxes .hours-section {
    padding: 15px 5px;
}

.checkout-page .time-boxes > div {
    font-size: 16px;
    border: 1px solid #585858;
    text-align: center;
}

.checkout-page .time-boxes .time-title {
    border-bottom: 1px solid #585858;
    padding: 3px;
    word-break: break-word;
}

.checkout-page .time-boxes .select-timebox {
    min-height: 80px;
    cursor: pointer;
}

    .checkout-page .time-boxes .select-timebox:hover,
    .checkout-page .time-boxes .select-timebox.active {
        background: #FFCC99;
    }

.tab-list {
    display: grid;
    grid-gap: 4px;
    grid-template-columns: 1fr 1fr;
    padding: 4px;
    background: #e2e7ef;
}

    .tab-list button.tab-item {
        font-size: 16px;
        background: white;
        border: none;
        cursor: pointer;
        padding: 4px;
        font-weight: 400;
    }

        .tab-list button.tab-item:hover {
/*            color: #aa4e00;
*/        }

        .tab-list button.tab-item.active {
            background: var(--main-orange-color);
            color: #ffffff;
        }

.tab-content.active {
    height: 100%;
    visibility: visible;
    opacity: 1;
    transition: visibility 0s,opacity 0.5s linear;
    overflow: visible;
    position: relative;
}

.tab-content {
    height: 0;
    visibility: hidden;
    opacity: 0;
    overflow: visible;
}

input:focus {
    outline: 0;
}


.message-box-wrapper {
    grid-column: 1/-1;
    padding: 10px;
}

    .message-box-wrapper .hidden {
        display: none;
    }

    .message-box-wrapper .message-box {
        border: 1px solid #db1427;
        border-radius: 5px;
        overflow: hidden;
    }

        .message-box-wrapper .message-box .title {
            color: #6b0c15;
            border-bottom: 1px solid #db1427;
            background: #feaeb6;
            font-weight: 600;
            font-size: 16px;
            padding: 10px 15px;
        }

        .message-box-wrapper .message-box .error-text {
            color: #6b0c15;
            text-align: center;
            padding: 10px;
        }

