.cart-order-mode-switcher {
    display: flex;
    margin-top: 32px;
    margin-bottom: 16px;
}
.cart-order-mode-switcher-tab {
    display: flex;
    flex: 1;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #ccc;
    margin-right: 4px;
    padding: 4px 10px;
    cursor: pointer;
    user-select: none;
}
.cart-order-mode-switcher-tab:last-child {
    margin-left: 4px;
}
.cart-order-mode-switcher-tab:first-child {
    margin-left: 0;
    margin-right: 4px;
}
.cart-order-mode-switcher-tab._active {
    border-color: var(--cal-highlight-color);
    color: var(--cal-highlight-color);
}
.cart-order-mode-switcher-tab .tab-label {
    margin-left: 12px;
}
.cart-order-mode-switcher-tab svg {
    pointer-events: none;
}
.cart-order-mode-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}
.cart-order-mode-actions .button {
    border-radius: 4px;
}
#cart-checkout-popup .location-list-item {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-top: none;
    cursor: pointer;
}
#cart-checkout-popup .location-list-item:hover {
    background-color: #efefef;
}
#cart-checkout-popup .location-list-item:first-child {
    border-top: 1px solid #ddd;
}
#cart-checkout-popup .location-list-item .primary-text {
    color: black;
}
#cart-checkout-popup .location-list-item .secondary-text {
    color: #6d6d6d;
}
#cart-checkout-popup .location-list-item .radio {
    padding: 16px;
}
#cart-checkout-popup .location-list-item .info {
    flex: 1;
    padding: 8px 0;
}
#cart-checkout-popup .location-list-item .date-picker-container {
    margin: 8px 0;
    display: none;
}
#cart-checkout-popup .location-list-item._active .date-picker-container {
    display: block;
}
#cart-checkout-popup .location-list {
    margin-bottom: 20px;
}
@media (max-height: 900px) {
    #cart-checkout-popup .location-list-item {
        font-size: 14px;
    }
}
@media (max-height: 768px) {
    /* Fixed footer */
    .cart-order-mode-actions {
        margin: 0;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        padding: 10px 20px;
        background: white;
        box-shadow: 0 0 15px -3px rgb(0 0 0 / 15%);
    }
    #cart-checkout-popup .tab-content {
        /* footer spacing */
        margin-bottom: 65px;
    }
}
