/* POPUP WARNING START  */
#warning-popup,
#demo-popup {
    display: none;
    z-index: 9999;
}

.popup {
    background-color: var(--white--color);
    width: 600px;
    padding: 30px 10px;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 20px;
    text-align: center;
    z-index: 555;
}

.overlay {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-color: var(--secondary--color);
    opacity: 0.7;
    z-index: 1010;
}

.popup-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 20px;
}

.popup-header h1 {
    text-align: center;
    text-transform: capitalize;
    color: var(--red--color);
    font-size: 30px;
    line-height: 25px;
    font-weight: 600;
}

.close {
    background-color: transparent;
    font-size: 40px;
    color: var(--secondary--color);
    font-weight: 400;
    border: none;
    outline: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 20px;
}

.popup-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

.popup-body h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 500;
}

.popup-body h2 span {
    color: var(--red--color);
}

.popup-body p {
    color: var(--secondary--color);
    font-size: 15px;
    line-height: 30px;
    font-weight: 400;
}

.warning-popup-mockup {
    width: 30%;
    margin: 0 auto;
}

.explore-button {
    padding-top: 10px;
    padding-bottom: 18px;
    padding-left: 4%;
    padding-right: 4%;
    margin-bottom: -4%;
}

.explore-button a {
    width: 100%;
    text-align: center;
    background-color: var(--primary--color);
    color: var(--white--color) !important;
    border-radius: 19px;
    padding: 12px 80px;
    font-size: 18px;
    font-weight: 600;
    display: block;
}

.explore-button a:hover {
    background-color: var(--primary--hover--color);
}

.support a:hover {
    background-color: var(--primary--color);
    color: var(--white--color);
}

.get a:hover {
    background-color: var(--primary--hover--color);
}

/* WARNING POPUP END  */

/* DEMO POPUP START  */
.demo-popup-title {
    color: var(--primary--color) !important;
}

.popup-buttons {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 15px;
    justify-content: center;
}

.support a {
    width: 100%;
    display: block;
    text-align: center;
    border: 2px solid var(--primary--color);
    color: var(--primary--color);
    background-color: transparent;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 17px;
    font-weight: 600;
}

.get a {
    width: 100%;
    text-align: center;
    background-color: var(--primary--color);
    color: var(--white--color) !important;
    border-radius: 10px;
    padding: 12px 65px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
}

.demo-popup-mockup {
    width: 60%;
    margin: 0 auto;
}

/* DEMO POPUP END  */

/* LOCATION POPUP START  */
.search-input {
    background: var(--white--color);
    width: 100%;
    border-radius: 15px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.08) 0px 0 10px 0;
    height: 40px;
}

.search-input input {
    height: 50px;
    width: 100%;
    outline: none;
    border: none;
    border-radius: 5px;
    padding: 0 20px 0 40px;
    font-size: 16px;
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.1);
}

.search-input.active input {
    border-radius: 5px 5px 0 0;
}

.search-input input label {
    pointer-events: none !important;
}

.search-input .autocom-box {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    /* height: 80px; */
    overflow: hidden;

}

.search-input.active .autocom-box {
    padding: 10px 8px;
    opacity: 1;
    pointer-events: auto;
}

.autocom-box li {
    list-style: none;
    padding: 8px 12px;
    display: none;
    width: 100%;
    cursor: default;
    border-radius: 3px;
    text-align: left;
}

.search-input.active .autocom-box li {
    display: block;
}

.autocom-box li:hover {
    background: #efefef;
}

.search-input .icon {
    position: absolute;
    left: 8px;
    top: 6px;
    height: 25px;
    width: 25px;
    text-align: center;
    color: #3D3D3D;
    cursor: pointer;
}

#drop-location-popup {
    display: none;
    z-index: 9999;
}

#location-popup {
    display: none;
    z-index: 9999;
}

.location-popup {
    background-color: var(--white--color);
    width: 850px;
    padding-top: 20px;
    position: fixed;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    border-radius: 20px;
    text-align: center;
    z-index: 5555;
    overflow-y: auto;
}

.location-popup-footer {
    /*box-shadow: rgba(0, 0, 0, 0.1) 0 -2px 10px 0;*/
    padding: 15px 20px;
}

.location-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
}

.location-back {
    display: flex;
    column-gap: 10px;
}

.location-back i {
    color: #3D3D3D;
    font-size: 15px;
}

.location-popup-header p {
    text-align: left;
    text-transform: capitalize;
    color: var(--secondary--color);
    font-size: 20px;
    line-height: 25px;
    font-weight: 600;
    margin-bottom: 0;
}

.location-popup-close {
    background-color: transparent;
    font-size: 30px;
    line-height: 5px;
    color: #3D3D3D;
    font-weight: 600;
    border: none;
    outline: none;
    cursor: pointer;
}

.location-popup-body {
    text-align: center;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    flex-grow: 1;
    overflow-y: auto;
    max-height: 80vh; /* Adjust based on your preference */
}

.location-popup-mockup {
    margin: 10px auto;
    width: 80%;
}

.confirm-button button {
    width: 100%;
    height: 50px;
    text-align: center;
    background-color: var(--primary--color);
    color: var(--white--color);
    border-radius: 10px;
    padding: 5px;
    font-size: 18px;
    font-weight: 600;
    border: none;
}

.confirm-button button:hover {
    background-color: var(--primary--hover--color);
}

.search-button {
    position: relative;
}

.search-button input {
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    display: inline-block;
    background-color: var(--white--color);
    color: var(--text--color);
    border: 1px solid #343434;
    border-radius: 50px;
    width: 100%;
    height: 50px;
    padding: 6px 41px 10px 10px;
}

.search-button label {
    position: absolute;
    left: 18px;
    /* top: 12px; */
    font-size: 16px;
    line-height: 20px;
    font-weight: 500;
    color: var(--text--color);
    transition: top 0.3s ease, font-size 0.3s ease, color 0.3s ease;
}

.search-button input:focus {
    border-color: #343434;
    outline: none;
}

.search-button input:focus+label,
.search-button input:not(:placeholder-shown)+label {
    background-color: #ffffff;
    border-radius: 4px;
    left: 8px;
    position: absolute;
    top: -12px;
    left: 35px;
    padding: 2px;
    z-index: 1;

    .sidebar-form-icon {
        display: none;
    }
}

:placeholder-shown {
    display: block;
}

.sidebar-form-icon {
    align-self: center !important;
    margin-right: 5px;
}

.search-button {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LOCATION POPUP END  */

/* TOPPPING POPUP START  */
.cart-product-img {
    border-radius:15px;
}

.topping-popup-close-button {
    position: absolute;
    right: 12px;
    top: 12px;
}

#topping-popup {
    display: none;
    z-index: 9999;
}

.topping-popup-main-title {
    color: var(--text--color);
    font-size: 16px;
    font-weight: 600;
}

.topping-popup {
    background-color: var(--white--color);
    max-width: 600px;
    max-height: 600px;
    width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    /*z-index: 5555;*/
    /*overflow-y: scroll;*/
}

.topping-popup::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.topping-popup .toppings-all-items::-webkit-scrollbar {
    display: none;
}

.topping-popup .food-product {
    position: sticky;
    top: 0;
    background: white;
}

.topping-popup .toppings-all-items {
    overflow-y: scroll;
    max-height: 400px;
    padding-bottom: 80px;
}

.topping-popup-body {
    padding: 20px;
}

.topping-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
}

.topping-back {
    display: flex;
    align-items: baseline;
    column-gap: 10px;
}

.topping-back i {
    color: #3D3D3D;
    font-size: 15px;
}

.topping-popup-header p {
    text-align: left;
    text-transform: capitalize;
    color: var(--secondary--color);
    font-size: 20px;
    line-height: 25px;
    font-weight: 400;
}

.topping-select-heading h4 {
    text-align: left;
    text-transform: capitalize;
    color: var(--text--color);
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    margin-top: 12px;
}

.topping-popup .food-product-title h4 {
    font-size: 26px;
    line-height: 30px;
}

.topping-popup .food-product-description p {
    font-size: 14px;
    line-height: 25px;
}

.topping-popup .food-product-image {
    width: 200px;
    height: 160px;
}

.topping-popup .food-product-description p,
.topping-popup .cart-divider {
    margin: 0;
}

.topping-popup-close {
    background-color: transparent;
    cursor: pointer;
}

.topping-popup-body {
    display: flex;
    flex-direction: column;
}

.topping-popup-mockup {
    width: 100%;
    height: 180px;
    margin: 0 auto;
    padding-top: 10px;
}

.select-radio {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.topping-radio-form {
    --text: #000000;
    --radio: #BEBEBE;
    --radio-checked: var(--primary--color) !important;
    --radio-size: 20px;
    --border-radius: 10px;
    background: var(--background);
    width: var(--width);
    height: var(--height);
    border-radius: var(--border-radius);
    color: var(--text);
    position: relative;
    display: grid;
    grid-template-columns: auto var(--radio-size);
    align-items: center;
    column-gap: 10px;
    row-gap: 15px;
}

.topping-radio-form label {
    cursor: pointer;
}

.topping-radio-form input[type="radio"] {
    --webkit-appearance: none;
    --moz-appearance: none;
    position: relative;
    height: var(--radio-size);
    width: var(--radio-size);
    outline: none;
    margin: 0;
    cursor: pointer;
    border: 2px solid var(--radio);
    background: transparent;
    border-radius: 50%;
    display: grid;
    justify-self: end;
    justify-items: center;
    align-items: center;
    overflow: hidden;
    transition: border .5s ease;
}

.topping-radio-form input[type="radio"]::before,
.topping-radio-form input[type="radio"]::after {
    content: "";
    display: flex;
    justify-self: center;
    border-radius: 50%;
}

.topping-radio-form input[type="radio"]::before {
    position: absolute;
    border: 2px solid var(--radio);
    width: 100%;
    height: 100%;
    background: var(--background);
    z-index: 1;
    opacity: var(--opacity, 0);
}

.topping-radio-form input[type="radio"]::after {
    position: relative;
    width: calc(100% /1.7);
    height: calc(100% /1.6);
    background: var(--radio-checked);
    top: var(--y, 100%);
}

.topping-radio-form input[type="radio"]:checked {
    --radio: var(--radio-checked);
}

.topping-radio-form input[type="radio"]:checked::after {
    --y: 0%;
}

.form input[type="radio"]:checked::before {
    --opacity: 0;
}

.topping-radio-form input[type="radio"]:checked~input[type="radio"]::after {
    --y: -100%;
}

.topping-radio-form input[type="radio"]:not(:checked)::before {
    --opacity: 0;
}

input[type=checkbox] {
    --webkit-appearance: none;
    --moz-appearance: none;
    cursor: pointer;
    background-color: #ffffff;
    border: 2px solid #bebebe;
    border-radius: 5px;
    width: 20px;
    height: 20px;
}

input[type=checkbox]:checked {
    background: var(--primary--color) url("data:image/gif;base64,R0lGODlhCwAKAIABAP////3cnSH5BAEKAAEALAAAAAALAAoAAAIUjH+AC73WHIsw0UCjglraO20PNhYAOw==") 3px 3px no-repeat;
    border: 2px solid #ffffff;
    accent-color: var(--primary--color);
    appearance: none;
    border-radius: 5px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary--color);

}

.topping-popup-footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.10);
    background-color: var(--white--color);
    padding: 10px 20px;
    border-radius: 0 0 20px 20px;
}

.topping-footer-detail {
    padding: 5px 0;
}

.topping-popup .food-product-price h6 {
    font-size: 20px;
    line-height: 20px;
    font-weight: 500;
}

.topping-popup .food-product-detail {
    row-gap: 0;
}

.topping-footer-detail h6 {
    font-size: 18px;
    font-weight: 500;
    color: #9c9c9c;
}

.topping-footer-detail span {
    font-size: 18px;
    font-weight: 500;
    color: var(--text--color);
}

.topping-footer-detail span {
    font-weight: 600;
}

.topping-footer-buttons {
    display: flex;
    align-items: baseline;
    justify-content: center;
    column-gap: 10px;
}

.topping-footer-buttons .add-btn {
    width: 30%;
    margin-top: 0;
}

.topping-footer-buttons .add-item-btn {
    width: 70%;
}

.topping-footer-buttons #food-add-qty {
    width: 100%;
}

.topping-footer-buttons .add-btn button {
    width: 100%;
    height: 45px;
}

.topping-footer-buttons .add-item-btn button {
    width: 100%;
    height: 45px;
    text-align: center;
    background-color: var(--primary--color);
    color: var(--white--color);
    border-radius: 10px;
    padding: 5px;
    font-size: 18px;
    font-weight: 400;
    border: none;
}

/* TOPPING POPUP END  */

/* REVIEW POPUP START  */
#review-popup {
    display: none;
    z-index: 9999;
}

.review-popup {
    background-color: var(--white--color);
    max-width: 600px;
    max-height: 500px;
    width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: 5555;
}

.review-popup-body {
    padding: 20px;
}

.review-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.review-popup-title h4 {
    color: var(--text--color);
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
}

.review-cart-divider {
    width: 62px;
    height: 3px;
    background-color: #D9D9D9;
}

.review-popup-close {
    background-color: transparent;
    font-size: 40px;
    line-height: 5px;
    color: #3D3D3D;
    font-weight: 400;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 10px;
}

.all-review-cards {
    overflow-y: scroll;
    max-height: 400px;
}

.all-review-cards::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.review-card:last-child {
    border: 0;
}

.review-card {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 2px solid #f5f5f5;
}

.review-card-body {
    padding-right: 20px;
}

.review-card-title h4 {
    color: var(--text--color);
    font-weight: 600;
    font-size: 20px;
    text-transform: capitalize;
    margin: 0;
    line-height: 1.5;
}

.review-card-description p {
    color: var(--text--color);
    font-weight: 400;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

.rating-box {
    background-color: var(--primary--color);
    color: var(--white--color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
}

.rating-box i {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin-right: 8px;
}

.rating-box p {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active, .btn-success.focus, .btn-success:focus, .btn-success:hover {
    color: var(--white--color) !important;
    background-color: var(--primary--hover--color) !important;
    border-color: var(--primary--color) !important;
}

@media only screen and (max-width: 767px) {
    .review-card-title h4 {
        font-size: 16px;
    }

    .review-card-description p {
        font-size: 14px;
    }

    #topping-popup {
        width: 90%;
    }
}


/* REVIEW POPUP END  */

/* I'WILL CHOOSE POPUP START  */
#iwill-choose-popup {
    display: none;
    z-index: 9999;
}

.iwill-choose-popup {
    background-color: var(--white--color);
    max-width: 600px;
    max-height: 500px;
    width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: 5555;
}
.iwill-choose-popup-body {
    padding: 20px;
}

.iwill-choose-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.iwill-choose-popup-title h4 {
    color: var(--text--color);
    font-weight: 600;
    font-size: 24px;
    text-transform: capitalize;
}

.iwill-choose-cart-divider {
    width: 62px;
    height: 3px;
    background-color: #D9D9D9;
}

.iwill-choose-popup-close {
    background-color: transparent;
    font-size: 40px;
    line-height: 5px;
    color: #3D3D3D;
    font-weight: 400;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 10px;
}
/* I'WILL CHOOSE POPUP END  */

/* OPENINGHOUR POPUP START  */
#openinghour-popup {
    display: none;
    z-index: 9999;
}

.openinghour-popup {
    background-color: var(--white--color);
    max-width: 600px;
    max-height: 600px;
    width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: 5555;
}

.openinghour-popup-body {
    padding: 20px;
}

.openinghour-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.openinghour-popup-title h4 {
    color: var(--text--color);
    font-weight: 600;
    font-size: 30px;
    text-transform: capitalize;
}

.openinghour-cart-divider {
    width: 80px;
    height: 3px;
    background-color: #D9D9D9;
}

.openinghour-popup-close {
    background-color: transparent;
    font-size: 40px;
    line-height: 5px;
    color: #3D3D3D;
    font-weight: 400;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 10px;
}

.openinghour-popup-location {
    display: flex;
    justify-content: start;
    align-items: baseline;
    column-gap: 5px;
    margin-top: 15px;
}

.openinghour-popup-location p {
    color: var(--text--color);
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
}

.openinghour-popup-location img {
    width: 20px;
    height: 20px;
    top: 3px;
    position: relative;
}

.openinghourtable {
    margin: 0px 30px;
    display: flex;
    justify-content: start;
    flex-direction: column;
    column-gap: 5px;
    overflow-y: scroll;
    max-height: 200px;
}

.openinghourtable::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.openinghourtable-content {
    display: flex;
    justify-content: space-around;
    align-items: baseline;
    margin-bottom: 5px;
    column-gap: 20px;
}

.openinghourtable-content p {
    border-bottom: 2px solid #f5f5f5;
    text-align: center;
    margin: 0px 0 0 0;
}

.openinghourtable-content p:first-child {
    width: 30%;
}

.openinghourtable-content p:last-child {
    width: 70%;
}

.openinghourtable-content:last-child p {
    border: none !important;
}

.openinghourtable-content p {
    color: var(--text--color);
    font-weight: 400;
    font-size: 18px;
}

.openinghourtable-content p.active {
    color: var(--primary--color);
}

/* OPENINGHOUR POPUP END  */

/* CART PROCEED BTN POPUP START  */
.cart-proceed-btn {
    background-color: var(--primary--color);
    color: var(--white--color);
}
.cart-proceed-btn:hover {
    background-color: var(--primary--color);
    color: var(--white--color);
}
/* CART PROCEED BTN POPUP END */

/* GIVEREVIEW POPUP START  */
#givereview-popup {
    display: none;
    z-index: 9999;
}

.givereview-popup {
    background-color: var(--white--color);
    max-width: 700px;
    max-height: 600px;
    width: 700px;
    height: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: 5555;
    overflow-y: scroll;
}

.givereview-popup::-webkit-scrollbar {
    width: 0;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */
}

.givereview-popup-close {
    background-color: transparent;
    font-size: 40px;
    line-height: 5px;
    color: #3D3D3D;
    font-weight: 400;
    border: none;
    outline: none;
    cursor: pointer;
    margin-left: 10px;
    margin-top: 10px;
}

.givereview-popup-location p {
    color: var(--text--color);
    font-weight: 500;
    font-size: 20px;
}

.rating-card-title h4 {
    color: var(--text--color);
    font-weight: 600;
    font-size: 24px;
}

.rating-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}

.giverating-card {
    margin-top: 10px;
}

.rating label {
    float: right;
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.rating label:before {
    font-family: FontAwesome;
    content: "\f005";
    color: #D9D9D9;
    font-size: 25px;
    font-weight: 400;
}

.rating input {
    display: none;
}

.rating input:checked~label:before {
    color: #FED14D;
}

.form-group input {
    height: 100px !important;
}

.form-group {
    width: 100% !important;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    left: 20px !important;
}

.search-button button {
    border-radius: 10px;
    margin-top: 15px;
    width: 30%;
}

/* GIVEREVIEW POPUP END  */


/* DELETE POPUP START  */
#delete-popup {
    display: none;
    z-index: 9999;
}

.delete-popup {
    background-color: var(--white--color);
    max-width: 600px;
    width: 600px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: 5555;
    padding: 20px;
}

.delete-popup-close {
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    font-size: 40px;
    line-height: 16px;
    color: #3D3D3D;
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 5px;
}

.delete-popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.delete-popup-title h4 {
    color: var(--text--color);
    font-weight: 600;
    font-size: 24px;
}

.delete-popup-divider {
    width: 80px;
    height: 3px;
    background-color: #D9D9D9;
    margin: 0 auto;
}

.delete-popup-body p {
    color: var(--text--color);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.delete-popup-body {
    padding: 20px 0 0 0;
}

.action-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
    padding-top: 10px;
}

.action-buttons .cancel-btn {
    width: 150px;
    height: 40px;
    text-align: center;
    color: var(--text--color);
    background: transparent;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    border: 1px solid var(--text--color);
}

.action-buttons .main-btn {
    width: 150px;
    height: 40px;
    text-align: center;
    background-color: var(--primary--color);
    color: var(--white--color);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    border: none;
}

/* DELETE POPUP END  */

/* LOGOUT POPUP START  */
#logout-popup {
    display: none;
    z-index: 9999;
}

/* LOGOUT POPUP END  */

/* PLACE ORDER POPUP START  */
#order-placed-popup {
    display: none;
    z-index: 9999;
}

.order-placed-popup {
    background-color: var(--white--color);
    max-width: 600px;
    max-height: 400px;
    width: 600px;
    height: 380px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 20px;
    z-index: 5555;
    padding: 20px;
}

.order-placed-popup-close {
    border: none;
    outline: none;
    cursor: pointer;
    background: none;
    font-size: 40px;
    line-height: 16px;
    color: #3D3D3D;
    font-weight: 500;
    position: absolute;
    right: 0;
    top: 5px;
}

.order-placed-popup-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.order-placed-popup-title h4 {
    color: var(--text--color);
    font-weight: 600;
    font-size: 24px;
}

.order-placed-popup-divider {
    width: 80px;
    height: 3px;
    background-color: #D9D9D9;
    margin: 0 auto;
}

.order-placed-popup-body p {
    color: var(--text--color);
    font-weight: 400;
    font-size: 20px;
    text-align: center;
}

.order-placed-popup-banner {
    text-align: center;
}

.order-placed-popup-body p,
.action-buttons,
.order-placed-popup-banner {
    margin-top: 20px;
}

.action-buttons .main-btn {
    width: 150px;
    height: 40px;
    text-align: center;
    background-color: var(--primary--color);
    color: var(--white--color);
    border-radius: 10px;
    font-size: 20px;
    font-weight: 500;
    border: none;
}

/* PLACE ORDER POPUP END */

/* delivery store promocode popup start */
.modal-header {
    border: 0;
}

.modal-content {
    border-radius: 20px;
}

.modal-body {
    padding-top: 0;
}

.all-promocodes {
    overflow-y: scroll;
    max-height: 250px;
}

.all-promocodes::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.promocode-popup-input button {
    font-weight: 600;
}

.promocode-popup-input button,
.promocode-popup-input input,
.promocode-popup-button input {
    /*background-color: #f5f5f5;*/
}
#promo-code-input, .promo-code-input-field, #promo_code_name{
    flex-grow: 1;
    border: 2px solid;
    border-color: #CBCBCB;
    border-radius: 17px;
    margin-right: 10px;
    padding: 10px;
}
#apply-promo-button, #promocode_btn{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 25px;
    border-radius: 14px;
    border: 2px solid;
    color: white;
    background-color: var(--primary--color);
}
.promocode-popup-input{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.promocode-popup-button {
    display: flex;
    margin: 15px 0;
    flex-direction: column;
    padding: 10px;
    border-radius: 15px;
    border: 2px solid;
    border-color: #CBCBCB;
}

.promocode-popup-input {
    margin-top: 2px;
}

.promocode-popup-button button {
    font-weight: 600;
    border: 1px solid;
    padding: 5px 25px;
    border-radius: 10px;
    color: var(--primary--color);
    float: right;
    background-color: transparent;
}

.promo-img-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.promo-img-title p {
    margin: 0;
    flex-grow: 1;
}

.promocode-description {
    margin-top: 5px;
}
.promocode-popup-input input::placeholder {
    color: var(--text--color);
    opacity: 1;
}

.promocode-popup-button p {
    margin: 0;
}

.promocode-popup .modal-title,.vehicle-popup-title {
    position: relative;
    font-weight: 600;
}

.promocode-popup .modal-title::after ,.vehicleinfo-popup .modal-title::after{
    content: "";
    width: 30%;
    height: .2em;
    background: #d9d9d9;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.promocode-popup-button:last-of-type {
    margin-bottom: 0;
}

/* delivery store promocode popup end */

/* cancel-popup-start */
.cancel-popup .modal-footer {
    justify-content: center;
    border: 0;
}

.cancel-popup .modal-title {
    position: relative;
    font-weight: 600;
}

.cancel-popup .modal-body {
    padding: 16px;
}

.cancel-popup .modal-title::after {
    content: "";
    width: 30%;
    height: .2em;
    background: #d9d9d9;
    position: absolute;
    bottom: -2px;
    left: 0;
}

.cancel-popup-close-button:hover,
.cancel-popup-close-button {
    border: 1px solid #343434;
    padding: 5px 55px;
    border-radius: 10px;
    font-size: 20px;
    line-height: 1.5;
}

.cancel-popup-try-again-button:hover,
.cancel-popup-try-again-button {
    border: 1px solid var(--primary--color);
    background-color: var(--primary--color);
    color: var(--white--color);
    padding: 5px 55px;
    border-radius: 10px;
    font-size: 20px;
    line-height: 1.5;
}

/* cancel-popup-end */

/* RESPONSIVE START  */
@media only screen and (max-width: 767px) {

    .topping-radio-form input[type="radio"]::before {
        border: 1px solid var(--radio);
    }

    .topping-radio-form input[type="radio"]::after {
        width: calc(100% /1.6);
        height: calc(100% /1.6);
    }

    .givereview p {
        font-size: 20px;
        line-height: 1.5;
    }

    .givereview {
        margin-top: 15px;
    }
}

@media only screen and (max-width: 1500px) and (min-width: 1300px) {

    .demo-popup-mockup {
        width: 40%;
    }

    .warning-popup-mockup {
        width: 18%;
    }

    .popup-body h2 {
        font-size: 16px;
        line-height: 25px;
    }

    .popup-header h1 {
        font-size: 25px;
    }

    .popup-body p {
        font-size: 14px;
        line-height: 25px;
    }

    .get a {
        padding: 10px 70px;
        font-size: 16px;
    }

    .support a {
        padding: 10px 15px;
        font-size: 16px;
    }

    .explore-button a {
        padding: 12px 70px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 915px) and (min-width: 768px) {
    .popup {
        width: 550px;
        padding: 20px 10px;
    }

    .popup-header h1 {
        font-size: 25px;
        line-height: 20px;
    }

    .popup-body h2 {
        font-size: 18px;
        line-height: 25px;
    }

    .close {
        top: 0px;
    }

    .demo-popup-mockup {
        width: 40%;
    }

    .popup-body p {
        font-size: 14px;
        line-height: 25px;
    }

    .support a {
        padding: 10px 10px;
        font-size: 15px;
    }

    .get a {
        padding: 10px 50px;
        font-size: 15px;
    }
}

@media only screen and (max-width: 900px) {
    .location-popup {
        width: 90%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .search-input.active .autocom-box {
        padding: 5px 6px;
    }

    .givereview-popup {
        max-width: 700px;
        max-height: 600px;
        width: 90%;
        height: auto;
    }

    .popup {
        width: 90%;
        height: auto;
    }

    .popup-header h1 {
        font-size: 20px;
        line-height: 10px;
    }

    .close {
        font-size: 35px;
        top: 10px;
        right: 15px;
    }

    .popup-body h2 {
        font-size: 14px;
        line-height: 20px;
    }

    .popup-body p {
        font-size: 14px;
        line-height: 22px;
    }

    .support a {
        padding: 10px 10px;
        font-size: 14px;
    }

    .get a {
        padding: 10px 40px;
        font-size: 14px;
    }

    .popup-buttons {
        padding-top: 10px;
        padding-bottom: 0px;
    }

    .demo-popup-mockup {
        width: 50%;
    }

    .popup-body {
        row-gap: 10px;
    }

    .popup-header {
        padding-bottom: 10px;
    }

    .explore-button a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .explore-button {
        padding-top: 10px;
        padding-bottom: 2%;
    }

    .order-placed-popup {
        width: 90%;
        height: 100%;
    }


}

@media only screen and (max-width: 520px) {
    .givereview-popup {
        max-height: 800px;
        height: fit-content;
    }
}

@media only screen and (max-width: 400px) {
    .topping-popup .food-product-title h4 {
        font-size: 22px;
        line-height: 1.5;
    }

    .topping-popup .cart-divider {
        margin: 15px 0 0 0;
    }

    .topping-popup .food-product-description p {
        font-size: 12px;
        line-height: 1.5;
    }

}

@media only screen and (max-width: 361px) {
    .support a {
        padding: 10px 6px;
    }

    #topping-popup {
        height: 500px;
    }

    .cart-product-img {
        width: 100px;
        height: 100px;
    }

    .get a {
        padding: 10px 20px;
    }

    .popup-body h2 {
        font-size: 13px;
        line-height: 20px;
    }

    .popup-body p {
        line-height: 20px;
    }

    .popup-header h1 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 340px) {
    .openinghourtable-content p:last-child {
        width: 100%;
    }

    .openinghourtable-content p {
        font-size: 16px;
    }

    .openinghour-popup-title h4 {
        font-size: 25px;
    }

    .openinghour-popup-location p {
        font-size: 18px;
    }

    .openinghour-popup-location {
        margin-top: 20px;
    }

    .openinghourtable-content {
        margin-top: 10px;
    }
}

@media only screen and (max-width: 300px) {
    .popup-body h2 {
        font-size: 11px;
        line-height: 16px;
    }

    .popup-header h1 {
        font-size: 14px;
    }

    .popup-body p {
        font-size: 12px;
        line-height: 16px;
    }

    .get a {
        padding: 10px 20px;
    }

    .close {
        font-size: 26px;
        top: 14px;
        right: 10px;
    }

    .support a,
    .get a {
        font-size: 12px;
    }
}

/* RESPONSIVE END  */
