/* Browsers which do not support safe-area-inset-* (Android, old iOS) */
:root {
    --main-color: #DD004E;  /** No need to change this, its a dummy variable **/
    --secondary-color: #292750;  /** No need to change this, its a dummy variable **/
    --button-outline-color: #DD004E;  /** No need to change this, its a dummy variable **/
    --contrast-main-color: white;  /** No need to change this, its a dummy variable **/
    --progress-hex-code: #999;  /** No need to change this, its a dummy variable **/
    --main-color-rgb: 251,192,46;  /** No need to change this, its a dummy variable **/
    --bg-img-url: url(img/bg.png); /** No need to change this, its a dummy variable **/
    --safe-area-inset-top: 44px;
    --safe-area-inset-bottom: 34px;
}
/* Browsers which partially support CSS Environment variables (iOS 11.0-11.2) */
@supports (padding-top: constant(safe-area-inset-top)) {
    :root {
        --main-color: #DD004E;  /** No need to change this, its a dummy variable **/
        --secondary-color: #292750;  /** No need to change this, its a dummy variable **/
        --button-outline-color: #DD004E;  /** No need to change this, its a dummy variable **/
        --contrast-main-color: white;  /** No need to change this, its a dummy variable **/
        --progress-hex-code: #999;  /** No need to change this, its a dummy variable **/
        --main-color-rgb: 251,192,46;  /** No need to change this, its a dummy variable **/
        --bg-img-url: url(img/bg.png); /** No need to change this, its a dummy variable **/
        --safe-area-inset-top: constant(safe-area-inset-top);
        --safe-area-inset-bottom: constant(safe-area-inset-bottom);
    }
}
/* Browsers which fully support CSS Environment variables (iOS 11.2+) */
@supports (padding-top: env(safe-area-inset-top)) {
    :root {
        --main-color: #DD004E;  /** No need to change this, its a dummy variable **/
        --secondary-color: #292750;  /** No need to change this, its a dummy variable **/
        --button-outline-color: #DD004E;  /** No need to change this, its a dummy variable **/
        --contrast-main-color: white;  /** No need to change this, its a dummy variable **/
        --progress-hex-code: #999;  /** No need to change this, its a dummy variable **/
        --main-color-rgb: 251,192,46;  /** No need to change this, its a dummy variable **/
        --bg-img-url: url(img/bg.png); /** No need to change this, its a dummy variable **/
        --safe-area-inset-top: env(safe-area-inset-top);
        --safe-area-inset-bottom: env(safe-area-inset-bottom);
    }
}

body, html {
    overscroll-behavior: none;
}
input[type="radio"].meal-deal-radio {
    vertical-align: top;
    margin-top: 0.25rem;
}

.bm-background {
    background-image: url(img/wallpaper.jpg);
    background-size: cover;
    background-attachment: fixed;
}
.btn-primary {
    background-color: var(--main-color);
    color: var(--contrast-main-color);
    border-color: var(--main-color);
}
.button-royal {
    cursor: pointer;
    padding: 1em;
    /*border-color: var(--main-color);*/
    border: none;
    color: var(--contrast-main-color);
    background-color: var(--main-color);
}
.button-black {
    cursor: pointer;
    padding: 1em;
    color: white;
    background: #000;
    /*border-color: var(--main-color);*/
    border: none;
}
.button-grey {
    cursor: pointer;
    padding: 1em;
    color: white;
    background: #404040;
    /*border-color: var(--main-color);*/
    border: none;
}
.button-pill {
    border-radius: 12px;
}
.button-margin {
    margin: 1em;
}
.button-col-large {
    max-width: 100%;
    width: 180px;
    font-size: 1em;
}

.latest-order-icon {
    font-size: 48px !important;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.loading-div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}

.no-margin {
    margin: 0;
}
.no-padding {
    padding: 0;
}
.semi-bold {
    font-weight: 500;
}
.demi-bold {
    font-weight: 600;
}

.strike {
    text-decoration: line-through;
}

.base-page {
    padding: 80px;
}

.login-page {
    padding: 0 10% 80px 10%;
    background: white;
    width: 550px;
    max-width: 100%;
}

/* home page */
.loading-page {
    height:50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.store-card {
    max-width: 800px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.30), 0 4px 4px rgba(0,0,0,0.22);
    border-radius: 1em;
}
.store-card img {
    max-width: 240px;
}

.search-bar-wrapper {
    width: 100%;
}
.search-bar {
    display: inline-flex;
    width: 100%;
    background-color: #eeeeee;
    border-radius: 0.4em;
    border: none;
    padding: 5px 1em;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
}

.search-bar .scanner-wrapper {
    display: flex;
    align-self: center;
    width: 3.3rem;
    height: 3.3rem;
    min-width: 3.3rem;
    cursor: pointer;
}
.search-bar .scanner-wrapper > .qrcode {
    background: #eee;
    color: grey;
    font-size: 2.2rem;
    border-radius: 50%;
    height: 100%;
    width: 100%;
}
.add-more-items-div .scanner-wrapper {
    color: grey;
    font-size: 2.2rem;
    margin-left: 1rem;
    cursor: pointer;
}
.qrcode > svg {
    margin: auto;
}

@media only screen and (min-width: 576px) {
    .search-bar {
        width: 50%;
        margin-left: 25%;
    }
}

@media only screen and (min-width: 607px) {
    .login-page {
        padding: 0 55px 80px 55px;
    }

}

.button-icon {
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
    padding: 0 6px;
    min-width: initial;
    border-color: transparent;
    background: 0 0;
    display: none;
}
.search-bar svg {
    align-self: center;
    margin-right: 10px;
}
.search-bar input {
    background-color: #eeeeee;
    width: 100%;
    border: none;
    outline-width: 0;
}

/* store page */
.banner-message {
    background: white;
    color: black;
    padding: 1em 1em;
    border-radius: 0.5em;
    margin-bottom: 1.5em;
}

.LP-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid;
    margin: 0 0.2em;
    padding: 0 0.5em;
    border-radius: 0.5em;
    transform: translate(0px, -8px);
}

.LP-icon {
    border-radius: 50%;
    font-size: 9px;
    padding: 2px;
    margin-left: 0.5em;
    /*text-align: center;*/
    color: white;
    transform: translate(0px, 4px);
}
.LP-icon-large {
    background: white;
    border-radius: 50%;
    font-size: 0.75em;
    padding-top: 2px;
    margin-left: 0.5em;
    width: 1.5em;
    height: 1.5em;
    text-align: center;
}

.cancel-subcategory-selection-wrapper {
    cursor: pointer;
}

.age-18 {
    border-radius: 50%;
    border: 1px solid black;
    text-align: center;
    padding: 0 0.2em;
    font-size: 0.8em;
}
.comments-input label {
    display: block;
    width: 100%;
}
.comments-input textarea {
    padding: 10px;
    width: 100%;
}
.event-details-input label {
    display: block;
    width: 100%;
}
.event-details-input textarea {
    padding: 10px;
    width: 100%;
}
.max-characters {
    text-align: right;
    width: 100%;
}
.error {
    color: #d22;
}

.menu-item-card-store .menu-item-card.menu-item-list {
    /* width: 43.5vw; */
    width: 96%;
    float: left;
    margin: 2%;
    min-height: 124px;
    background-color: white;
    padding-bottom: 0.5em;
}
.menu-item-card.menu-item-list {
    height: auto;
    /* width: 43.5vw; */
    min-height: 7em;
    /* max-height: 120px; */
}
.menu-item-card-parent .menu-item-card.menu-item-list {
    border-radius: 6px;
    height: 95%;
}
.menu-item-card .top-left-corner-time-string {
    position: absolute;
    z-index: 10;
    left: 0;
    top: 0;
    background: #cc8400;
    /*margin: 0 15px;*/
    display: inline-block;
    border-radius: 0.25em;
}
.menu-item-card .top-left-corner-time-string p {
    color: white;
    font-size: 0.85em;
    margin: 0;
    padding: 0.1em 0.5em;
}
.menu-item-card .menu-item-card-img.list-img {
    position: absolute;
    max-width: 120px;
    right: 0;
    padding: 2px;
    margin: 2px;
    /* max-height: 160px; */
    height: 120px;
    min-height: auto;
    z-index: 10;
}
.menu-item-card img.menu-item-card-img {
    object-fit: contain;
}
.menu-item-card .menu-item-card-name.subcategory-text {
    padding: 4px 8px;
    font-weight: normal;
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.menu-item-card-blurb {
    /* 1.2rem(font-size) * 1.2 (line height) * 2 (lines) + 8px(padding)*/
    height: calc(3rem + 8px);
}
.menu-item-card .menu-item-card-name.subcategory-text {
    font-size: 1.25rem;
}
@media only screen and (max-width: 768px) {
    .menu-item-card .menu-item-card-name.subcategory-text {
        font-size: 1rem;
    }
}
@media only screen and (max-width: 576px) {
    .menu-item-card .menu-item-card-name.subcategory-text {
        font-size: 0.9rem;
    }
}
.item-cart .top-left-corner-time-string {
    position: absolute;
    left: 0;
    top: 0;
    background: #cc8400;
    /* margin: 0 15px; */
    transform: translate(0px, -16px);
    display: inline-block;
    border-radius: 0.25em;
}
.item-cart .top-left-corner-time-string p {
    color: white;
    font-size: 0.8em;
    margin: 0;
    padding: 0 0.5em;
}

.row-vertical-align {
    display: flex;
    align-items: center;
}

.menu-item-card-parent {
    position: relative;
    margin-bottom: 2em;
}
.card-img {
    padding: 1.5em 1em 1em;
    text-align: center;
    /*box-shadow: 0 2px 2px rgba(0,0,0,0.30), 0 4px 4px rgba(0,0,0,0.22);*/
    /* border-radius: 1em; */
    position: relative;
}
.menu-item-card-parent:nth-child(odd) .card-img {
    background: white;
}
.menu-item-card-parent:nth-child(odd) .list-img {
    background: white;
}
.menu-item-card {
    position: relative;
    height: 100%;
    cursor: pointer;
}
.menu-item-card.menu-subcategory-wrapper {
    margin: 6px;
    /* width: 130px; */
    min-width: 130px;
    max-width: 180px;
    border-radius: 6px;
    border: 1px solid;
}
.menu-subcategory-wrapper-no-image {
    padding: 0 1em;
    border: 1px solid white;
}
@media only screen and (max-width: 576px) {
    .menu-item-card.menu-subcategory-wrapper {
        margin: 2px;
        width: calc(100vw/5);
        border-radius: 4px;
    }
}
.menu-item-card .menu-item-card-img-container {
    position: relative;
    display: block;
    margin: auto;
    max-width: 100%;
    /*max-height: 50%;*/
    min-height: 80px;
    border: 1px solid #eee;
}
.menu-item-card .menu-item-card-img-container.subcategory-image-wrapper {
    min-height: unset;
    border: none;
}
.menu-item-card .menu-item-allergen-img {
    display: inline-flex;
    margin: 0 10px 10px 10px;
    /*max-height: 50%;*/
    height: 20px;
}
.menu-item-card .menu-item-allergen-img.no-margin-left-right {
    margin: 0 0 10px;
}
.menu-item-card .menu-item-card-img-container.list-img {
    position: absolute;
    max-width: 100px;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0 5px;
    max-height: 100px;
}
.list-img-bottom {
    display: none !important;
}
.card-img h2 {
    font-size: 1em;
    height: 48px;
}

.card-img.list-img h2 {
    height: auto;
    text-align: left;
}
.list-img p {
    text-align: left;
}
.card-img .prep-time {
    display: flex;
    align-items: center;
    min-height: 40px;
    justify-content: center;
}
.card-img.list-img .prep-time {
    justify-content: start;
}
.menu-item-card-price {
    padding: 8px;
    border-radius: 1em;
    font-weight: 500;
}
.list-img .menu-item-card-price {
    padding: 0;
}
.menu-item-card-parent:nth-child(odd) .menu-item-card-price {
    background: white;
}
.menu-item-card-parent:nth-child(even) .menu-item-card-price {
    background: white;
}
.menu-item-card-parent:nth-child(even) .list-img .menu-item-card-price {
    background: white;
}
.menu-category-box {
    padding: 0.5em 1em;
}
.menu-category-box:first-child {
    border-top-left-radius: 1em;
    border-bottom-left-radius: 1em;
}
.menu-category-box:last-child {
    border-top-right-radius: 1em;
    border-bottom-right-radius: 1em;
}
.scan-item.row {
    margin-left: 0;
    margin-right: 0;
}
.royal {
    color: var(--main-color);
}
.white {
    color: white;
}
.black {
    color: black;
}
.bg-white {
    background-color: white;
}
.bg-black {
    background-color: black;
}
.input-label-profile {
    width: 28%;
}
.input-background, .item-input input.input-background, .item-input input[type="text"].input-background {
    border-radius: 4px;
    background-color: #f2f2f2;
    padding: 3px 4px;
}
.add-card-input.input-background-dropdown {
    padding: 7.5px 6px;
}
.input-background.input-background-dropdown .input-label {
    padding: 0;
}
/* Address Map stuff */

#infowindow-content .title {
    font-weight: bold;
}

#infowindow-content {
    display: none;
}

#map #infowindow-content {
    display: inline;
}

.pac-card {
    background-color: #fff;
    border: 0;
    border-radius: 2px;
    box-shadow: 0 1px 4px -1px rgba(0, 0, 0, 0.3);
    margin: 10px;
    font: 400 18px Roboto, Arial, sans-serif;
    overflow: hidden;
    /*font-family: Roboto;*/
    padding: 0;
}

#pac-container {
    padding-bottom: 12px;
    margin-right: 12px;
}

.pac-controls {
    display: inline-block;
    padding: 5px 11px;
}

.pac-controls label {
    /*font-family: Roboto;*/
    font-size: 13px;
    font-weight: 300;
}

#pac-input {
    background-color: #fff;
    /*font-family: Roboto;*/
    font-size: 15px;
    font-weight: 300;
    margin-left: 12px;
    padding: 0 11px 0 13px;
    text-overflow: ellipsis;
    width: 80vw;
}
#pac-input:focus {
    border-color: #4d90fe;
}

#title {
    color: #fff;
    background-color: #4d90fe;
    font-size: 20px;
    font-weight: 500;
    padding: 6px 12px;
}

.menu-item-card-img {
    width: 120px;
    /*height: 120px;*/
    max-width: 100%;
}
.menu-item-overlay-img {
    position: absolute;
    max-width: 3.5rem;
    z-index: 5;
    right: 0;
    top: 0;
}
.menu-item-card.menu-item-list .menu-item-overlay-img {
    max-width: 25px;
    /*right: 0;*/
    /*bottom: 0;*/
}
.meal-deal-item-overlay-img {
    position: absolute;
    z-index: 5;
    width: 2rem;
    height: 2rem;
    left: 0;
    top: 0;
}
.cart-item-overlay-img {
    position: absolute;
    z-index: 5;
    height: auto;
    width: 32px;
    left: 5px;
    top: 5px;
}
.menu-item-card-img.subcategory-img {
    min-width: unset;
    min-height: unset;
    width: unset;
    aspect-ratio: 1;
}
.modal {
    overflow-x: hidden;
    overflow-y: auto;
}
.modal-body:before,
.modal-body:after {
    display: table;
    content: " ";
}
.modal-header:before,
.modal-header:after {
    display: table;
    content: " ";
}

.app-color {
    color: var(--main-color) !important;
}
.contrast-color {
    color: var(--contrast-main-color) !important;
}
.secondary-color {
    color: var(--secondary-color) !important;
}

.progress-wrapper {
    position: relative;
}
.progress-wrapper .current {
    position: absolute;
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    font-size: 1rem;
    font-weight: 600;
}
.button-category {
    background-color: white;
    color: var(--main-color) !important;
}
.suggested-item-main-parent {
    border-radius: 1em;
    width: auto;
    min-width: 270px;
    /* width: 30%; */
    /* display: inline-block; */
    /* margin-right: 16px; */
    margin-bottom: 16px;
    background: #f5f5f5;
    padding: 1em 1.5em;
    float: left;
    cursor: pointer;
    -webkit-box-shadow: 0 20px 40px 0 rgba(0, 11, 40, 0.14);
    -moz-box-shadow: 0 20px 40px 0 rgba(0, 11, 40, 0.14);
    box-shadow: 0 20px 40px 0 rgba(0, 11, 40, 0.14);
}
.suggested-item-img-parent {
    /* padding-top: 8%; */
}
.suggested-item-img {
    width: 100%;
}
.suggested-item-img-parent .suggested-item-overlay-img {
    position: absolute;
    max-width: 25%;
    z-index: 5;
    right: 5px;
    top: 5px;
}

.offer-color {
    color: #cc8400;
}

.capitalize {
    text-transform: capitalize;
}

.button-view-reservation {
    cursor: pointer;
    font-size: 2rem;
    margin: auto;
    min-width: fit-content !important;
    padding: 1% !important;
    color: var(--main-color);
}

.button.button-outline {
    border-color: var(--button-outline-color) !important;
    background-color: white !important;
    color: var(--button-outline-color) !important;
}
.button.button-outline-black {
    border-color: black !important;
    background-color: white !important;
    color: black !important;
}

.button-checkout-parent {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}
.button-bar.button-checkout {
    border-radius: 26px;
    background: white;
    padding: 5px;
    min-width: 30vw;
    display: flex;
    justify-content: space-between;
}
.button-bar.button-checkout > .button {
    border-radius: 24px;
    cursor: pointer;
    padding: 1em;
    margin: 0 5px;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    flex: 1;
}
.button-bar.button-checkout > .button.selected {
    font-weight: 600;
    color: var(--contrast-main-color);
    background-color: var(--main-color);
}

.button-radio-parent {
    display: flex;
    justify-content: center;
    margin-bottom: 1em;
}
.button-bar.button-radio {
    border-radius: 26px;
    background: white;
    padding: 5px;
    min-width: 30vw;
    display: flex;
    justify-content: space-between;
}
.button-bar.button-radio > .button {
    border-radius: 24px;
    cursor: pointer;
    padding: 1em;
    margin: 0 5px;
    color: black;
    border: 1px solid black;
    flex: 1;
}
.button-bar.button-radio > .button.selected {
    font-weight: 600;
    color: white;
    background-color: black;
}

.text-color {
    color: var(--main-color);
}

.latest-order-main {
    box-shadow: 0 15px 15px 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 15px 15px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 15px 15px 5px rgba(0, 0, 0, 0.2);
    max-width: 680px;
    margin: auto;
    border-radius: 1em;
}
.app-background-shadow {
    background: white;
    box-shadow: 0 15px 15px 5px rgba(0, 0, 0, 0.2);
    -webkit-box-shadow: 0 15px 15px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 15px 15px 5px rgba(0, 0, 0, 0.2);
}
.coll-del-order-timer {
    width: 20%;
}
.order-complete i {
    text-align: center;
    display: block;
    /* transform: translateY(-4px); */
}
.coll-del-order-timer .ion-timer-txt {
    transform: translate(0, -5px) !important;
    font-size: 1.6rem !important;
}
.coll-del-stages {
    background: white;
    padding-bottom: 0;
    padding-top: 6% !important;
    margin-top: 0;
    border-radius: 1em 1em 0 0;
}
.coll-del-stages .col {
    /*padding-bottom: 0;*/
}
.coll-del-stage-name {
    margin-bottom: 0;
}
.coll-del-stage-num {
    display: inline;
}
.coll-del-main {
    background: white;
    /* padding-bottom: 0;
    */
    height: 8%;
}
.coll-del-main h2 {
    font-size: 1.4rem;
}
.coll-del-main .col {
    /* padding-bottom: 0;
    */
    padding-top: 4%;
}
.coll-del-description {
    background: white;
    min-height: 14%;
    /*height: 14%;*/
    /* margin-bottom: 5px; */
}
.coll-del-description p {
    padding: 0 1em;
    /* font-size: 0.9rem;
    line-height: 1em;
    margin-bottom: 0; */
}
.coll-del-description .button {
    padding-left: 32px;
    padding-right: 32px;
}
.coll-del-info {
    background: white;
    padding: 3% !important;
    /*font-size: 1rem;*/
    font-weight: 500;
    border-radius: 0 0 1em 1em;
}
.coll-del-stages .unfinished {
    color: lightgray !important;
}
.coll-del-time {
    background: white;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50%;
    border: 2px solid var(--main-color);
    position: absolute;
    margin-top: -2.5em;
    padding: 10px;
    height: 80px;
    width: 80px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
}
.coll-del-time div {
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50%;
    position: absolute;
    height: 60px;
    width: 60px;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    /* padding-left: 4px;
    padding-top: 4px; */
}
.coll-del-time-mins {
    text-align: center;
    margin-top: -50%;
}
/*Collection Map*/
#collDelMap {
    height: 30vh !important;
}
.button-red {
    background: #dd0132;
    /*background: #D00026;*/
    color: white;
    border-radius: 1rem;
}
.button-padding {
    padding: 10px;
}
.button-grey-resume {
    background: #aaa;
    color: black;
    border-radius: 1rem;
}
.button-notify-store {
    line-height: 1.2;
    font-size: 1rem;
    padding: 0 16px !important;
}
.button-notify-store > img {
    height: 30px;
    width: 30px;
    margin: 4px;
}
/*#collDelMap.active {*/
/*z-index: 11000;*/
/*}*/


/* drag dealer styling*/
.drag-dealer {
    position: relative;
    height: 50px;
    width: 50%;
    margin: auto;
    background: #e0e0e0;
    border-radius: 25px;
}
.drag-dealer .background-text {
    color: #505050;
    font-weight: bold;
    text-align: right;
    line-height: 50px;
    padding-right: 30px;
}
.drag-dealer .handle {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
}
.drag-dealer .kiwi-bar {
    width: 60px;
    height: 50px;
    border-radius: 25px;
    background: #041e63;
    color: #FFF;
    font-size: 2rem;
    line-height: 50px;
    text-align: center;
}
.drag-dealer .disabled {
    background: #898989;
}

.top-bar {
    position: absolute;
    top: 0;
    padding: 0 1em;
    right: 0;
    background: #EEEEEE;
    align-items: center;
    display: flex;
    width: 100%;
    height: 60px;
}
.top-bar-spacer {
    width: 75%;
    display: inline-block;
}
.top-bar-minimal {
    background: none;
    padding-left: 50% !important;
    /* top: 8% !important; */
}
.wave-container {
    color: var(--contrast-main-color);
}
.wave-container .store-name-outer-container {
    color: var(--contrast-main-color);
}
.wave-container .store-name {
    color: var(--contrast-main-color);
}
.wave-container .info-icon {
    color: var(--contrast-main-color);
}
.store-name {
    margin-left: 0;
    width: 20%;
}
.menu-subcategories-parent {
    overflow: auto;
    white-space: nowrap;
}
.menu-subcategories-parent > div {
    display: inline-block;
    text-align: center;
}
.menu-subcategories-parent::-webkit-scrollbar {
    display: none;
}
.menu-subcategories-parent {
    -ms-overflow-style: none;
}
.menu-subcategories-child {
    cursor: pointer;
    padding: 1em;
    border-bottom: none;
    color: var(--contrast-main-color);
}
.menu-subcategories-child.selected {
    border-bottom: 2px solid var(--contrast-main-color);
}
.cal-day-child {
    cursor: pointer;
    padding: 1em;
    border-bottom: none;
    color: var(--contrast-main-color);
}
.cal-day-child.selected {
    border-bottom: 2px solid var(--contrast-main-color);
}
.suggested-items-parent {
    display: flex;
    overflow: auto;
    white-space: nowrap;
}
.menu-modal-tab {
    cursor: pointer;
    color: #D0D0D0;
}
.selectedModalTab {
    color: white !important;
    border-bottom: 1px solid white;
}
.menu-item-time {
    display: flex;
    align-items: center;
    font-size: 0.9em;
}
.proceed-confirm-bar {
    position: fixed;
    bottom: 0;
    padding-bottom: 0;
    width: 100%;
    background: #EEEEEE;
    left: 0;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
}
.proceed-confirm-btn {
    width: 40%;
    max-width: 600px;
    padding: 1em 1em;
    margin: 0.5em min(30%, 80px) 0.5em 0.5em;
}
.scan-and-go-proceed-button {
    position: absolute;
    margin-right: min(30%, 80px);
    min-height: 100%;
    padding: 10px;
    justify-content: start;
    width: 4.5rem;
    font-size: 2.5rem;
    bottom: 0;
    cursor: pointer;
}
.proceed-scanner-button {
    padding: 1em 1em;
    margin: 0.5em min(30%, 80px) 0.5em 0.5em;
}

.menu-item-modal-left {
    /*position: absolute;*/
}
.app-background-color {
    background-color: var(--main-color) !important;
}
.secondary-background {
    background-color: var(--secondary-color) !important;
}
.secondary-background-button {
    background-color: var(--secondary-color) !important;
    color: black !important;
}
.secondary-color {
    color: var(--secondary-color) !important;
}

.store-logo {
    max-height: 120px;
    max-width: 100%;
}
.numberCircle {
    display: inline-block;
    border-radius: 50%;
    border: 0;
    color: white;
    font-size: 12px;
    height: 28px;
    width: 28px;
}
.numberCircle:before,
.numberCircle:after {
    content: '\200B';
    display: inline-block;
    line-height: 0;

    padding-top: 50%;
    padding-bottom: 50%;
}

.numberCircle:before {
    padding-left: 8px;
}
.numberCircle:after {
    padding-right: 8px;
}

.customer-role-buttons {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.customer-role-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35%;
    padding: 10% 5%;
    border-radius: 24px;
    font-size: 3rem;
    line-height: 3rem;
    cursor: pointer;
}
.customer-role-button.customer-role-button-left {
    margin: 0 5% 0 10%;
    background: #0f3455;
    color: white;
}
.customer-role-button > img {
    width: 40%;
    margin: 0 5%;
}

.customer-role-button.customer-role-button-right {
    margin: 0 10% 0 5%;
    background: lightgrey;
    color: black;
}
@media only screen and (max-width: 576px) {
    .customer-role-buttons {
        flex-direction: column;
        align-content: center;
    }
    .customer-role-button {
        width: 80%;
        font-size: 2rem;
        line-height: 2rem;
    }
    .customer-role-button.customer-role-button-left,
    .customer-role-button.customer-role-button-right {
        margin: 5% 0;
    }
}

.menu-item-details-modal {
    padding-top: 0;
    padding-bottom: 0;
}
.menu-item-details-modal .resume-order-logo > img {
    width: 34%;
    padding: 3%;
}

.menu-item-details-modal-footer {
    border: none;
    position: fixed;
    bottom: 0;
    left: 0;
    background: white;
    width: 90%;
    justify-content: center;
}
.add-cart-btn {
    position: absolute;
    right: 10px;
    transform: translate(-40px, 30px);
}
.add-names-btn {
    position: absolute;
    left: 10px;
    transform: translateY(-60px);
}
.grey-divider {
    height: 1vh;
    width: 100%;
    background: #eee;
}
.grey-divider-row {
    height: 1vh;
    background: #eee;
}
.accordion-container {
    width: 100%;
    background: none;
    border-top: 1px solid #eee;
}
.accordion-top-bar {
    width: 100%;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    cursor: pointer;
    /*background: none;*/
}
.accordion-title {
    /*font-size: 2rem;*/
}
.accordion-arrow-icon {
    position: absolute;
    right: 5%;
}
.accordion-arrow-icon i {
    display: inline-block;
    transition: all linear 200ms;
}
.accordion-expanded .accordion-arrow-icon i {
    transform: rotate(-180deg);
}
.accordion-content-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height ease-in-out 200ms;
}
.accordion-expanded .accordion-content-container {
    /* note: this is a backup in case JS code fails */
    /* find the smallest safe value that is greater than the content height */
    max-height: 100vh;
}
.accordion-content {
    overflow: auto;
}
.menu-item-customisations {
    height: 75vh;
    padding: 0 1em 64px 1em;
    overflow-y: scroll;
}
.menu-item-details-counter {
    padding: 10px;
    max-width: 20rem;
    margin: 10px auto;
    border-radius: 10rem;
    border: 1px solid #ddd;
}
.menu-item-details-counter .item-quantity-label {
    margin-bottom: 0;
}
.menu-item-details-counter .item-quantity-label > input {
    width: 100%;
    border: none;
}

/* Nutrition info */
.nutrition-chart-top-row {
    text-align: right;
    margin-bottom: 15px;
    padding: 3px 0;
    border-bottom: 1px solid white;
}
.nutrition-bar {
    text-align: center;
    display: block;
    overflow: auto;
}
.menu-item-card-img-full {
    width: 200px;
    /*height: 200px;*/
    max-width: 100%;
}
.nutrient-total {
    font-size: 0.75em;
}
.nutrient-type {
    margin-bottom: 0.25em;
}
.nutrient-circle-div {
    float: left;
    width: 28%;
}
.box-shadow-confirm {
    box-shadow: 0 8px 8px rgba(0,0,0,0.10), 0 4px 4px rgba(0,0,0,0.22)
}
.confirm-page-padding {
    padding: 2.5em;
}
.scan-item-img {
    height: auto !important;
    /* width: 15% !important; */
    max-height: none !important;
    /* max-width: none !important; */
    max-width: 100%;
    /*transform: translate(-15%, 0%);*/
}
.scan-item-overlay-img {
    position: absolute;
    width: 25%;
    left: 5px;
    top: 5px;
}
.scan-img-text {
    white-space: normal !important;
}

.scan-screen-parent {
    background: white;
    padding: 4em 1em;
    max-width: 680px;
    margin: auto;
    border-radius: 8px;
    min-height: 80vh;
}

.magic-redirect-container {
    background-color: #404040;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    margin: 10px 2px;
    display: block;
    cursor: pointer;
    white-space: nowrap;
}
.magic-redirect-link {
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    display: block;
}
.magic-redirect-fallback {
    color: #404040;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

#meeting-room-select_dummy {
    display: none;
}

.stripe-anonymous .StripeElement {
    box-sizing: border-box;

    height: 40px;

    padding: 10px 12px;

    border: 1px solid transparent;
    border-radius: 4px;
    background-color: white;

    box-shadow: 0 1px 3px 0 #e6ebf1;
    -webkit-transition: box-shadow 150ms ease;
    transition: box-shadow 150ms ease;
}

.stripe-anonymous .StripeElement--focus {
    box-shadow: 0 1px 3px 0 #cfd7df;
}

.stripe-anonymous .StripeElement--invalid {
    border-color: #fa755a;
}

.stripe-anonymous .StripeElement--webkit-autofill {
    background-color: #fefde5 !important;
}
.stripe-pay {
    border: none;
    border-radius: 4px;
    outline: none;
    text-decoration: none;
    color: #fff;
    background: #32325d;
    white-space: nowrap;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    padding: 0 2em;
    box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.025em;
    -webkit-transition: all 150ms ease;
    transition: all 150ms ease;
    margin-left: 12px;
    margin-top: 28px;
}

.receipt-card {
    position: relative;
    padding: 2em;
    background-color: #28264f;
    border: 1px solid #3a3a48;
    border-radius: 24px 48px 24px 48px;
}
.receipt-card-light {
    padding: 16px;
    background-color: #ffffff;
    border: 1px solid #002c5f;
    border-radius: 25px
}
.receipt-logo {
    max-width: 60px;
    max-height: 60px;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.receipt-logo-wrapper {
    height: 60px;
}

.red-textfield{
    border: solid 2px red !important;
}

.filter-button {
    cursor: pointer;
    padding: 1em;
    border: solid 1px #666;
    color: #666;
    background-color: #fff;
    min-width: 90%;
}
.filter-button.selected {
    border-color: var(--main-color);
    color: var(--contrast-main-color);
    background-color: var(--main-color);
}

.takeaway-type {
    background: var(--main-color) !important;
    color: var(--contrast-main-color) !important;
}
#table-select_dummy {
    display: none;
}

.confirm-delivery-table td{
    padding: 4px;
}

.show-only-mobile {
    display: none;
}
.loyalty-store {
    display: flex;
}
.display-flex-align-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.show-only-desktop {
    display: none;
}

.ged-image {
    top: 20px;
    left: 44vw;
}
.ged-image img {
    width: 220px;
}
.ged-form .form-control:focus {
    border-color: #C13938;
    box-shadow: none;
}
.sodexo-canada-bg {
    /* background:url(https://www.goodeatingcompany.com/assets/images/delivered-desktop.jpg?v2);
    background-size:cover;
    background-size:cover;
  box-shadow:inset 0 0 0 2000px rgba(255, 0, 150, 0.3); */
}
#delivery-option-select_dummy {
    display: none;
}
.app-button-selected {
    background: var(--main-color) !important;
    color: var(--contrast-main-color) !important;
}
.app-button-selected:focus {
    outline: none;
}
.nutrient {
    width: 33%;
}
.nutrient-total {
    font-size: 0.8rem;
}
.nutrient-text {
    float: left;
    margin-bottom: 0;
    padding-bottom: 2px;
    /* font-weight: 600; */
}
.nutrient-value {
    /*font-weight: 600;*/
    padding-left: 10px;
}

.nutrient-percentage {
    font-weight: bolder;
    margin-bottom: 0;
    padding-bottom: 2px;
    float: right;
}
.cart-price {
    text-align: right;
    padding: 0 16px 0 0;
}
.cart-description-redemption {
    font-size: 14px;
}
.cart-price-redemption {
    text-align: right;
    font-size: 14px;
}
.cart-item-img {
    height: 100%;
    padding: 5px;
}

.clubhouse-option {
    position: relative;
    margin-bottom: 2em;
    cursor: pointer;
}
.clubhouse-option img {
    width: 100%;
    border-radius: 8px;
    height: 100%;
}
.clubhouse-option .text {
    position: absolute;
    bottom: 12px;
    left: 15%;
    color: white;
}
.clubhouse-layer {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    /* left: 14px; */
    width: calc(100% - 30px);
    /* right: 14px; */
    height: 100%;
    padding: 1em 0;
    border-radius: 8px;
}

.menu-item-detail-right {
    padding: 2em 1.5em 2em 2em;
}
#storePageMenuItemDetailsModal .modal-dialog {
    /* transform: translateX(15px); */
    width: 100vw;
}
.checkout-section {
    background-color: white;
    max-width: 1000px;
    margin: auto;
    border-radius: 8px;
    margin-bottom: 1em;
}
/* hide dummy input display */
input.mbsc-control {
    display: none;
}
.wide-as-needed {
    overflow: auto;
    white-space: nowrap;
    margin-left: 0.5em;
    margin-right: 0.5em;
}
.reorder-card-parent {
    position: relative;
    margin-bottom: 1em;
}
.reorder-card {
    position: relative;
    cursor: pointer;
    min-height: 3em;
    height: 7em;
    margin-right: 1em;
    padding: 0.5em 1em;
    border-radius: 1em;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
}
.reorder-card .reorder-card-name {
    font-size: 1em;
    margin-bottom: 0;
    /*border-top: 1px solid #bdbdbd;*/
    margin-top: 4px;
    /*padding-top: 10px;*/
}
.blue-text {
    color: #007bff;
}
.text-right {
    text-align: right;
}
.text-center {
    text-align: center;
}
.text-left {
    text-align: left;
}
.text-ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.text-ellipsis-two-lines {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.uppercase {
    text-transform: uppercase;
}
.clickable {
    cursor: pointer;
}
.content-wrapper {
    background: white;
    padding: 1em;
    max-width: 680px;
    margin: auto;
    border-radius: 8px;
}
.display-flex-row-center {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
}
.button-profile {
    background-color: white;
    color: red;
    font-size: 1.2rem;
    cursor: pointer;
}
.menu-scroll-desktop {
    overflow-y: scroll;
}

.tick-wrapper {
    color: #00c500;
    position: relative;
    bottom: 2px;
}

.card-icon {
    height: 30px;
    position: absolute;
    left: 12px;
    top: 7px;
}

.card-icon-relative {
    height: 30px;
    position: relative;
    top: 7px;
}

.switch-card-icon {
    top: 4px;
    height: 36px;
    background: white;
    border-radius: 2em;
    font-size: 0.8em;
    padding: 0 0.7em;
    color: black;
    line-height: 36px;
}

.card-icon-action {
    height: 30px;
    position: absolute;
    left: 18px;
    top: 7px;
}
.card-icon-writing {
    /* height: 30px; */
    position: absolute;
    left: 90px;
    top: 0px;
    bottom: 0px;
    /* top: 7px; */
}
.payment-page button {
    display: block;
    width: 400px;
    margin: 16px 0;
    padding: 8px;
    background: black;
    border: none;
    position: relative;
}
.payment-bottom button {
    /* display: block; */
    width: 400px;
    margin: 16px 0;
    padding: 8px;
    /* background: black; */
    border: none;
    position: relative;
}

.inline-allergen-icons {
    width: 20px !important;
    height: 20px;
}

.nested-modifier {
    max-width: 96%;
    margin-left: 2%;
    margin-right: 2%;
    border: 1px solid;
}

.menu-item-details-modifier-nest {
    padding: 0;
    margin-top: 0;
}
.menu-item-details-modifier-nest-label {
    background: #f8f8f8;
    padding-right: 2px;
}
/*.menu-item-details-modifier-nest-dropdown {*/
    /*float: right;*/
    /*transform: translateY(60%);*/
/*}*/

.meal-deal-item-image {
    height: 56px;
    width: unset !important;
}
.meal-deal-item {
    background: white;
    border-radius: 8px;
    padding: 8px 16px;
    margin-bottom: 8px;
}

.menu-item-details-modifier-img-container-outer {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}
.menu-item-details-modifier-img-container {
    position: relative;
    width: 70px;
    max-width: 70px;
}
.menu-item-details-modifier-img-container img {
    border: 1px solid #eee;
    width: 14vw;
    max-width: 70px;
}
.centre-modifier-single {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}
.centre-modifier {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}
.modifier-info-btn {
    position: absolute;
    /* z-index: 5; */
    border-radius: 50%;
    background: white;
    width: 1rem;
    height: 1rem;
    left: 0;
    top: 0;
    text-align: center;
}
.modifier-info-btn > i {
    position: relative;
    top: calc(50% - 9px); /* 50% - 3/4 of icon height */
}
.modifier-info-btn-left {
    left: 40%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.animationIf.ng-enter,
.animationIf.ng-leave {
    -webkit-transition: all ease-in-out 200ms;
    -moz-transition: all ease-in-out 200ms;
    -ms-transition: all ease-in-out 200ms;
    -o-transition: all ease-in-out 200ms;
    transition: all ease-in-out 200ms;
}

.animationIf.ng-enter,
.animationIf.ng-leave.ng-leave-active {
    opacity: 0;
}

.animationIf.ng-leave,
.animationIf.ng-enter.ng-enter-active {
    opacity: 1;
}

.animationSlide {
    -webkit-transition: -webkit-transform ease-in-out 200ms;
    -moz-transition: -webkit-transform ease-in-out 200ms;
    -ms-transition: -webkit-transform ease-in-out 200ms;
    -o-transition: -webkit-transform ease-in-out 200ms;
    transition: -webkit-transform ease-in-out 200ms;
}

.modifierIncrementButton {
    transform: translateX(4.6vw);
}

.modifierQuantity {
    transform: translateX(2.3vw);
}

@media only screen and (max-width: 767px) {
    .show-only-desktop {
        display: none;
    }
    .show-only-mobile {
        display: inherit;
    }
    .stripe-close {
        right: 1.5em;
        top: 1em;
    }
    #storePageMenuItemDetailsModal {
        overflow-y: auto;
    }
    .left-scroll {
        left: 0;
    }
    .right-scroll {
        right: 0;
    }
    .checkout-section {
        padding: 8px;
    }
    .menu-item-detail-right {
        padding: 0 1em 2em 1em;
    }
    .ged-image {
        /* top: 6vh; */
        left: 25vw;
    }
    .ged-image img {
        width: 200px;
    }
    .menu-item-card-img-parent-div {
        margin: 1.5rem 0 1rem 0;
    }
    .top-bar {
        padding: 0;
        top: 56px;
    }
    .top-bar-spacer {
        width: 2.5em;
    }
    .top-bar-install {
        position: absolute;
        top: 0;
        padding: 0 1em;
        right: 0;
        background: hsl(223, 22%, 21%);
        align-items: center;
        display: flex;
        width: 100%;
        height: 56px;
    }
    .base-page {
        padding: 140px 20px 80px 20px;
    }
    .base-page-narrow {
        padding: 40px 20px 80px 20px;
    }
    .store-card img {
        width: 100%;
    }
    .store-name {
        width: 60%;
    }
    .card-img h2 {
        font-size: 1em;
        height: 52px;
    }
    .proceed-confirm-btn {
        width: 80vw;
        max-width: none;
        margin-right: max(10vw, 80px);
    }
    .scan-and-go-proceed-button {
        margin-right: max(10vw, 80px);
    }
    .proceed-scanner-button {
        padding: 1em 1em;
        margin-right: max(10vw, 80px);
    }

    .menu-item-modal-left {
        position: relative;
    }
    .suggested-item-main-parent {
        width: auto;
    }
    .reserve-slot{
        width: 30%;
        display: inline-block;
        margin: 0.5em 0.5em;
        /* margin-left: 0.5em;
        margin-right: 0.5em; */
    }
    .reserve-slot:nth-child(3n + 1) {
        margin-left: 0;
    }
    .reserve-slot:nth-child(3n+1) {
        /* margin: 0.5em 0.5em; */
    }
    .reserve-slot:nth-child(3n + 3) {
        margin-right: 0;
    }
    .add-cart-btn {
        position: fixed;
        right: 0;
        bottom: 0;
        transform: translate(16px, 8px);
    }
    .add-names-btn {
        position: fixed;
        left: 0;
        bottom: 0;
        transform: translateY(8px);
    }
    .menu-scroll-desktop {
        overflow-y: unset;
        height: auto;
    }
    .menu-item-modal-details {
        background: white;
    }
    .menu-modal-tab {
        color: gray;
    }
    .selectedModalTab {
        color: black !important;
    }
    .nutrition-modal {
        color: var(--main-color);
    }
    .nutrition-chart-top-row {
        border-bottom: 1px solid var(--main-color);
    }
    .nutrient-circle-div {
        min-height: 140px;
    }
    .confirm-page-padding {
        padding: 1em;
    }
    .suggested-item-main-parent {
        padding: 0;
        background: none;
        box-shadow: none;
        display: block;
        float: none;
    }
    .suggested-items-parent {
        display: block;
        white-space: normal;
    }
}
@media only screen and (min-width: 768px) {
    .show-only-desktop {
        display: inherit;
    }
    .show-only-mobile {
        display: none;
    }
    .stripe-close {
        right: 30%;
        top: 2em;
    }
    .left-scroll {
        left: 1em;
    }
    .right-scroll {
        right: 1em;
    }
    .checkout-section {
        padding: 1em;
    }
    .card-img {
        /*min-height: 340px;*/
    }
    .card-img.list-img {
        min-height: 0;
    }
    .delivery-block {
        min-width: 420px;
    }

    .reserve-slot{
        width: 22%;
        display: inline-block;
        margin: 0.5em 0.5em;
        /* margin-left: 0.5em;
        margin-right: 0.5em; */
    }
    .reserve-slot:nth-child(4n + 1) {
        margin-left: 1em;
    }
    .reserve-slot:nth-child(3n+1) {
        /* margin: 0.5em 0.5em; */
    }
    .reserve-slot:nth-child(4n + 4) {
        margin-right: 1em;
    }
    .menu-item-modal-details {
        background: var(--main-color);
        color: var(--contrast-main-color);
    }
    .nutrition-modal {
        color: var(--contrast-main-color);
    }
    .menu-item-card-img-full {
        width: 320px;
        /*height: 320px;*/
    }
    .dayOfWeekDropdown {
        padding-left: 75%;
    }
    .menu-item-card-img {
        /* width: 100%; */
        max-width: 100%;
        min-width: 50%;
        height: auto;
        min-height: 160px;
        /* max-height: 400px; */
    }

    .itooltip {
        display: inline-block;
    }

    .itooltip .itooltiptext {
        visibility: hidden;
        width: 25%;
        background-color: black;
        color: #fff;
        border-radius: 6px;
        padding: 7px;
        text-align: justify;
        text-justify: inter-word;

        /* Position the tooltip */
        position: absolute;
        z-index: 1;
    }

    .itooltip:hover .itooltiptext {
        visibility: visible;
    }

    .hide-background input, select {
        background: none;
    }
}

.freedompay-stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.freedompay-stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
@media (max-width: 768px) {
    .freedompay-stepper-item {
        font-size: 12px;
    }
}

.freedompay-stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}

.freedompay-stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}

.freedompay-stepper-item .freedompay-step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
}

.freedompay-stepper-item.active {
    font-weight: bold;
}

.freedompay-stepper-item.completed .freedompay-step-counter {
    background-color: #4bb543;
}

.freedompay-stepper-item.completed::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #4bb543;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.freedompay-stepper-item:first-child::before {
    content: none;
}
.freedompay-stepper-item:last-child::after {
    content: none;
}
.stripe-wrapper > div {
    background: white;
    margin: 4px 0;
    padding: 10px;
    max-width: 500px;
    border-radius: 6px;
}
.stripe-wrapper #card-errors {
    padding: 8px;
    color: red;
}

input.subscription-search {
    margin-top: 20%;
    width: 100%;
    max-width: 620px;
    border: 1px solid #555;
    display: block;
    padding: 9px 4px 9px 40px;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' class='bi bi-search' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z'%3E%3C/path%3E%3C/svg%3E") no-repeat 13px center;
}

.subscription-box {
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.30), 0 4px 4px rgba(0, 0, 0, 0.22);
    border-radius: 1em;
}

.subscription-padding {
    padding: 12px;
    margin: auto;
}

.payment-method-loading-indicator {
    white-space: normal !important;
    display: flex;
    align-items: center;
    padding-left: 1em;
}

.switch-wallet-item .top-left-corner-time-string {
    background: #cc8400;
    margin: 0 0 3px -5px;
    border-radius: 1em;
}
.switch-wallet-item .top-left-corner-time-string p {
    /* color: #7978c2; */
    color: white;
    /*font-size: 0.85em;*/
    /*margin: 0;*/
    padding: 0.1em 0.5em;
}

.switch-wallet-display-button {
    /* display: block; */
    width: 400px;
    margin: 16px 0;
    padding: 8px;
    /* background: black; */
    border: none;
    position: relative;
}
.list.user-management-card {
    margin: 20px 10px;
    border-radius: 24px;
    padding: 26px;
    border: 1px solid;

}
.custom-onhover {
    background: #ffffff;
    color: #333333;
    display: inline-block !important;
    width: 100% !important;
}

.custom-focus {
    border: 1px solid #cccccc;
    background: #ededed;
    font-weight: normal;
    color: #2b2b2b;
    display: inline-block !important;
    width: 100% !important;
}
#appleid-signin > div {
    max-width: 400px !important;
}
#appleid-signin > div > div > svg {
    height: 36px;
}

.gift-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

#freedompay-checkout-googlepayiframe iframe {
    width: 100%;
}

.freedompay-iframe-main-div {
    display: flex;
    height: 100%;
    margin: 0;
    padding-top: 2em;
    background-color: rgba(0, 0, 0, .5);
}

.freedompay-iframe-div {
    background-color: white;
    margin: auto;
    border-radius: 4px;
    padding: 4px;
}

.ratings {
    font-size: 3.2rem;
    padding: 20px 0;
    text-align: center;
}
.ratings li {
    display: inline;
    padding-left: 6px;
    padding-right: 6px;
}

.ratings-button {
    margin: auto;
    display: block;
    width: 80%;
    border: 2px solid;
}

.filter-toggle {
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 8px;
    color: white;
}

/* Custom slider-fashion checkbox */
/* https://www.w3schools.com/howto/howto_css_switch.asp */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 3rem;
    height: 1.6rem;
    margin: 0 !important;
    transform: translateY(0.5rem);
}

/* Hide default HTML checkbox */
.switch input {
    display: none !important;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: gray;
    -webkit-transition: .6s;
    transition: .6s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 1.6rem;
    width: 1.6rem;
    left: 0;
    bottom: 0;
    background-color: white;
    -webkit-transition: .3s;
    transition: .3s;
}
input:checked + .slider {
    background-color: #2cbac2;
}
input:focus + .slider {
    box-shadow: 0 0 1px #2cbac2;
}
input:checked + .slider:before {
    -webkit-transform: translateX(1.5rem);
    -ms-transform: translateX(1.5rem);
    transform: translateX(1.5rem);
    border: 1px solid lightgray;
}
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
.slider.round:before {
    border-radius: 50%;
}
.dietary-info-button {
    border: 1px solid transparent;
    background-color: #f8f8f8;
    color: #444;
    position: relative;
    display: inline-block;
    /* margin: 0 3px 0 0; */
    padding: 0 12px;
    min-width: 36px;
    min-height: 23px;
    border-radius: 4px;
    vertical-align: top;
    text-align: center;
    text-overflow: ellipsis;
    font-size: 1.4rem;
    line-height: 23px;
}

.event-details-header{
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
}
