[v-cloak] {
    display: none;
  }

.nordantia-loading-status {
    display: flex;
    flex-direction: column;
    padding: 30px 10px;
    max-width: 1200px;
    margin: auto;
}

.nordantia-loading-container {
    margin-bottom: 40px;
    padding: 4px;
    display: grid;
    gap: 1rem 1rem;
    grid-template-columns: repeat(auto-fill, minmax(min(32%, 420px), 1fr));
}

.nordantia-loading-status .nordantia-loading-text {
    height: 40px;
    width: 250px;
    margin: 0 0 20px 4px;
    background: #f3f3f3b7;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 0.125rem 0px, rgba(0, 0, 0, 0.12) 0px 0.125rem 0.125rem 0px;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.nordantia-loading-status .nordantia-loading-box {
    height: 120px;
    width: 100%;
    background: #f3f3f3b7;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 0.125rem 0px, rgba(0, 0, 0, 0.12) 0px 0.125rem 0.125rem 0px;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.nordantia-loading-status .nordantia-loading-text::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 500%;
    background: linear-gradient(
      135deg, /* Diagonal gradient */
      rgba(255, 255, 255, 0) 0%,   /* Start transparent */
    rgba(255, 255, 255, 0.15) 25%, /* Slightly visible near start */
    rgba(255, 255, 255, 0.8) 50%, /* Bright center */
    rgba(255, 255, 255, 0.15) 75%, /* Slightly visible near end */
    rgba(255, 255, 255, 0) 100%   /* End transparent */
    );
    transform: translate(-100%, -100%); /* Start outside the box */
    animation: shine 3s infinite;
  }

.nordantia-loading-status .nordantia-loading-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 500%;
    height: 500%;
    background: linear-gradient(
      135deg, /* Diagonal gradient */
      rgba(255, 255, 255, 0) 0%,   /* Start transparent */
    rgba(255, 255, 255, 0.15) 25%, /* Slightly visible near start */
    rgba(255, 255, 255, 0.5) 50%, /* Bright center */
    rgba(255, 255, 255, 0.15) 75%, /* Slightly visible near end */
    rgba(255, 255, 255, 0) 100%   /* End transparent */
    );
    transform: translate(-100%, -100%); /* Start outside the box */
    animation: shine 3s infinite;
  }

  /* Keyframes for shine effect */
@keyframes shine {
    0% {
      transform: translate(-100%, -100%); /* Start from top-left */
    }
    100% {
      transform: translate(100%, 100%); /* Move to bottom-right */
    }
  }

.nordantia button {
    outline: none;
    border: none;
    background: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.nordantia-modal {
    gap: 12px;
    min-height: 80vh;
    background-color: #ffffff;
    height: fit-content;
    max-height: 97vh;
    overflow-y: hidden;
    justify-content: flex-start;
    border-radius: 16px;
    margin: 0 auto;
}

#drinks_modal {
    position: fixed;
    border-radius: 16px;
}

.nordantia-modal .nordantia-banner {
    width: 100%;
    min-height: 240px;
    border-radius: 8px 8px 0 0;
    background-size: cover;
    background-position: center;
    background-image: url("./images/item.png");
    display: flex;
    padding: 12px;
    justify-content: flex-start;
    align-items: flex-start;
}

.nordantia-modal .nordantia-extras {
    background-color: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    max-height: 100%;
    position: relative;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.nordantia-modal .nordantia-extras::-webkit-scrollbar {
    display: none;
  }


.nordantia-modal .nordantia-extra {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f5f6f7;
}

.nordantia-modal .nordantia-selections {
    padding: 0 12px;
}

.nordantia-modal .nordantia-top-banner {
    padding: 0;
}

.nordantia-modal .nordantia-head {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: baseline;
    padding: 20px 10px 8px;
}

.nordantia-modal .nordantia-extra-title,
.nordantia-modal .nordantia-compulsory-title {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.nordantia-modal .nordantia-extra-title {
    padding-top: 12px;
}

.nordantia-modal .nordantia-optional,
.nordantia-required,
.nordantia-modal .nordantia-discount {
    font-weight: 500;
    font-size: 12px;
    color: #ff6a4d;
    background-color: #ffeeeb;
    border-radius: 8px;
    padding: 4px 8px;
}

.nordantia-modal .nordantia-title {
    display: flex;
    gap: 8px;
    width: 68%;
}

.nordantia-modal .nordantia-title h4 {
    width: 100%;
}

.nordantia-modal span.nordantia-price {
    color: #776282;
    font-size: 14px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nordantia-modal .nordantia-ingredients {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: #454545;
    margin: 0 12px;
    padding: 0 0 12px;
    border-bottom: 1px solid #f0edf2;
}

.nordantia-modal .nordantia-deactive {
    opacity: 0.5;
}

.nordantia-modal .nordantia-control {
    display: flex;
    width: auto;
    justify-content: flex-start;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: #776282;
}

.nordantia-modal div.nordantia-price {
    display: flex;;
    font-weight: 500;
    font-size: 15px;
    line-height: 16px;
    color: #4d4d4d;
    gap: 2px;
}

.nordantia-extras div.nordantia-price {
    flex-direction: column;
}

.nordantia-modal .nordantia-icon {
    width: 24px;
    height: 24px;
    background-size: 20px;
    border-radius: 8px;
}

.nordantia-modal .nordantia-unchecked {
    background-size: 24px;
    background-color: transparent !important;
    background-image: url("./images/unchecked.svg");
}

.nordantia-modal .nordantia-checked {
    background-color: transparent !important;
    background-size: 24px;
    background-image: url("./images/checked_orange.svg");
}

.nordantia-modal .nordantia-vegan {
    background-color: transparent;
    background-image: url("../../assets/customer/menu/vegan.svg");
}

.nordantia-modal .nordantia-gluten {
    background-color: transparent;
    background-image: url("../../assets/customer/menu/gluten.svg");
}

.nordantia-modal .nordantia-lactose {
    background-color: transparent;
    background-image: url("../../assets/customer/menu/lactose.svg");
}



.nordantia-modal h4 {
    display: flex;
    align-items: center;
    font-weight: 500;
    margin: 0;
    color: #4d4d4d;
    font-size: 16px;
}

.nordantia-modal .nordantia-compulsory {
    padding: 14px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-bottom: 1px solid #f0edf2;
}

.nordantia-modal .nordantia-compulsory span {
    color: #b3b3b3;
    font-size: 12px;
}

.nordantia-modal .nordantia-sub-compulsories {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
    /*height: 136px;*/
    overflow-y: scroll;
}

.nordantia-modal .nordantia-show {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
}

.nordantia-modal .nordantia-text {
    font-weight: 400;
    font-size: 12px;
    line-height: 14px;
    text-align: center;
    color: #ff6a4d;
}

.nordantia-modal .nordantia-sub-compulsory {
    width: 100%;
    border: 1px solid rgb(172 172 172);
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    color: #776282;
    cursor: pointer;
}

.nordantia-modal input[type="radio"] {
    appearance: none;
}

.nordantia-modal .nordantia-active_sub_compulsory {
    border: 1px solid #ff6a4d;
    color: #ff6a4d;
}

.nordantia-modal .nordantia-extra h4 {
    font-weight: 400;
    width: auto;
    font-size: 14px;
    line-height: 16px;
    color: #776282;
}

.nordantia-modal .nordantia-head h4 {
    color: #4d4d4d;
    width: 70%;
    margin: 0;
    text-align: left;
    font-size: 18px;
    line-height: 20px;
}

.nordantia-modal button.nordantia-fill {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    min-height: 53px;
    margin: 0 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    letter-spacing: 0;
}

.nordantia-modal button.nordantia-deactive {
    opacity: 0.4;
}

.nordantia-modal .nordantia-change-price {
    background-color: #ffeeeb;
    border-radius: 8px;
    padding: 4px 8px;
    font-weight: 400;
    font-size: 14px;
    color: #ff6a4d;
}

.nordantia-modal s {
    font-weight: 400;
    font-size: 10px;
    color: #b3b3b3;
}

.nordantia-modal .nordantia-close {
    background-image: url("./images/close.svg");
    height: 32px;
    width: 32px;
    background-color: #fafafa;
    background-size: 24px;
    border: none;
    padding: 0;
}

#app .nordantia-icon {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px;
    width: 24px;
    height: 24px;
	cursor: pointer;
}

.nordantia-modal .nordantia-off_compulsory {
    opacity: 0.3;
}

#app {
    scroll-behavior: smooth;
    margin: 0 auto 30px auto;
    width: 100%;
    user-select: none;
    position: relative;
}

.nordantia-items-list-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 10px;
}

.nordantia-items {
    position: relative;
    font-size: 30px;
    text-align: center;
    background-color: #fff;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 0.125rem 0px, rgba(0, 0, 0, 0.12) 0px 0.125rem 0.125rem 0px;
    border-radius: 0.3rem;
    padding: 0.75rem;
}
.nordantia-items:hover {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 0px 0.3rem 0px, rgba(0, 0, 0, 0.12) 0px 0.125rem 0.3rem 0px;
    transform: scale(1.02);
}

.nordantia-items-container {
    display: grid;
    gap: 7px;
    grid-template-columns: repeat(auto-fill, minmax(min(32%, 420px), 1fr));
}

.nordantia-btn {
    display: flex;
    align-items: center;
    gap: 17px;
    height: 100%;
    margin: 0;
    background-color: transparent;
    cursor: pointer;
}

.nordantia-category {
    display: flex;
    flex-direction: column;
    padding: 0;
}

.nordantia-title {
    font-weight: 500;
    font-size: 18px;
    color: #ffaa99;
    margin-top: -96px;
}

.nordantia-category-description {
    max-width: 900px;
    margin-bottom: 10px;
}

#app .nordantia-category-description h3 {
    overflow: initial;
    white-space: initial;
    font-weight: 500;
}

#app s {
    font-weight: 400;
    font-size: 13px;
    color: #b3b3b3;
}

.nordantia-discount {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: 500;
    font-size: 12px;
    border-radius: 0 0.3rem;
    background-color: #ff6a4d;
    color: #f5f6f7;
    padding: 7px 11px;
}

#app h3 {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #2b2b2b;
	margin: 0;
}

.nordantia-detail {
    height: 100%;
    width: 65%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.nordantia-detail span {
    font-weight: 500;
    font-size: 15px;
    color: #fb9f13;
}

.nordantia-head {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    align-items: center;
    width: 100%;
}

.nordantia-type {
    color: #b3b3b3;
    font-size: 14px;
    width: 100%;
}

.nordantia-ingredients {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    margin-bottom: 10px;
    color: #868686;
    text-align: left;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.nordantia-price {
    display: flex;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 20px;
    color: #e9c869; 
    gap: 10px;
}

.nordantia-photo {
	display: block;
    min-width: 86px;
    width: 30%;
    height: 82px;
    border-radius: 8px;
    /* background-image: url("./images/item.png"); */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.nordantia-blur-bg {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 990;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    width: 100%;
    height: 100vh;
    overflow: hidden;
    -webkit-backdrop-filter: brightness(55%);
    backdrop-filter: brightness(55%);
    -webkit-overflow-scrolling: touch;
}

.nordantia-modal-container {
    position: fixed;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 995;
    width: 100%;
    height: 100%;
}

.nordantia-modal {
    position: absolute;
    bottom: -100%;
    transition: 0.3s ease;
    width: 100%;
    max-width: 510px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 991;
    display: none;
    flex-direction: column;
    padding: 0 0 20px 0;
}


button.nordantia-fill,
button.nordantia-outline {
    border-radius: 12px;
    height: 48px;
    font-weight: 500;
    font-size: 18px;
    cursor: pointer;
    line-height: 21px;
}

button.nordantia-fill {
    color: #ffffff;
    background-color: #ff6a4d;
    border: 1px solid #ff6a4d;
}

button.nordantia-outline {
    color: #ff6a4d;
    background-color: #ffffff;
    border: 1px solid #ffaa99;
}

.nordantia-checkout {
    display: flex;
    align-items: flex-end;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 20px auto;
	margin-bottom: 20px;
    z-index: 980;
    transition: 0.2s ease;
    background: #ffffff;
    height: 48px;
    cursor: pointer;
    border-radius: 8px;
}

.nordantia-checkout_not {
    display: flex;
    align-items: flex-end;
    width: 100%;
    position: fixed;
    bottom: -150px;
    transition: 0.2s ease;
}

.nordantia-to-top {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 980;
    transition: 0.2s ease;
    background-color: #FF6A4D;
    cursor: pointer;
    border-radius: 8px;
    background-image: url("./images/basket.svg");
    background-size: 65%;
    background-position: center center;
    background-repeat: no-repeat;
}



.nordantia-to-top-not {
    position: fixed;
    bottom: -150px;
    transition: 0.2s ease;
}


.nordantia-checkout_not .nordantia-content .nordantia-price,
.nordantia-checkout .nordantia-content .nordantia-price {
    display: flex;
    align-items: center;
    color: #fafafa;
    height: 100%;
    min-width: 80px;
}

.nordantia-cart {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 19px;
}

.nordantia-price .nordantia-icon {
    width: 28px;
    background-position: right;
    background-size: 28px;
    background-image: url("./images/right_w.svg");
}

.nordantia-checkout_not .nordantia-content,
.nordantia-checkout .nordantia-content {
    background-color: #ff6a4d;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
    width: 100%;
    border-radius: 8px;
    height: 48px;
    padding: 10px;
    color: #fafafa;
}

a.nordantia-title {
    margin-top: 15px;
    padding: 10px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 28px;
    color: #464646;
    scroll-margin-top: 90px;
}

.nordantia-category-container {
    position: sticky;
    top: -1px;
    min-height: 73px;
    background-color: #ffffff;
    padding: 12px 6px 4px 6px;
    z-index: 980;
    box-shadow: 0 2px 7px #0000003b;
}

.nordantia-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nordantia-categories a {
    cursor: pointer;
    width: fit-content;
    min-width: fit-content;
    margin: 0px 5px 5px 0px;
    padding: 2px 12px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    display: flex;
    color: #5c5c5c;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    border: 1px solid #dfdfdf;
    border-radius: 7px;
	background-color: #fff;
}

.nordantia-categories a.nordantia-active {
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    border-bottom: solid 4px #FF6A4D;
}

/* basket styles */
.nordantia-basket {
	background-color: #fff;
    max-width: 600px;
    margin: auto;
    padding: 4px;
    border-radius: 14px;
}


.nordantia-basket .nordantia-menu {
    overflow: hidden;
    max-height: 100vh;
}

.nordantia-basket .nordantia-container {
    justify-content: space-between;
}

.nordantia-basket .nordantia-content .nordantia-title {
    font-weight: 500;
    font-size: 18px;
    line-height: 21px;
    color: #b3b3b3;
    /* padding: 16px 0; */
}

.nordantia-basket .nordantia-content {
    gap: 12px;
    /*overflow-y: scroll;*/
}

.nordantia-basket .nordantia-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.nordantia-basket .nordantia-items {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0edf2;
    border-radius: 0;
    box-shadow: none;
}

.nordantia-basket .nordantia-items:hover {
    box-shadow: none;
    transform: none;
}

.nordantia-basket .nordantia-photo {
    display: none;
}

.nordantia-basket .nordantia-btn {
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: 12px;
    background-color: #f5f6f7;
	cursor: initial;
	border-radius: 8px;
}

.nordantia-basket h3 {
    font-size: 18px;
	line-height: 30px;
    color: #4d4d4d;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
}

.nordantia-basket .nordantia-detail {
    display: flex;
    gap: 12px;
    align-items: center;
    width: 100%;
    flex-direction: row;
    justify-content: flex-end;
}

.nordantia-basket .nordantia-detail .nordantia-head span {
    font-weight: 300;
    font-size: 12px;
    color: #b3b3b3;
}

.nordantia-basket .nordantia-head {
    display: flex;
    justify-content: flex-start;
    gap: 4px;
    align-items: center;
    width: 100%;
}

.nordantia-basket .nordantia-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    height: 100%;
    justify-content: space-between;
	padding: 10px;
}

.nordantia-basket .nordantia-ingredients {
    font-weight: 300;
    font-size: 14px;
    color: #b3b3b3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    height: 20px;
}

.nordantia-basket .nordantia-values {
    display: flex;
    justify-content: space-between;
}

.nordantia-basket .nordantia-price {
    color: #776282;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nordantia-basket .nordantia-quantity {
    font-weight: 300;
    font-size: 14px;
    color: #737373;
}

.nordantia-basket .nordantia-adder {
    width: 100%;
    display: flex;
    gap: 8px;
	cursor: pointer;
}

.nordantia-basket .nordantia-extras {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nordantia-basket .nordantia-extras .nordantia-extra {
    justify-content: flex-end;
}

.nordantia-basket .nordantia-extras .nordantia-extra div {
    width: 49%;
}

.nordantia-basket .nordantia-adder button {
    width: 100%;
    border: 1px solid #ff6a4d;
    border-radius: 8px;
    height: 34px;
    background-color: #ffffff;
    color: #ff6a4d;
    font-size: 14px;
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 0;
    line-height: 0;
    cursor: pointer;
}

.nordantia-basket .nordantia-drink,
.nordantia-basket .nordantia-extra {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-weight: 300;
    font-size: 14px;
    color: #737373;
}

.nordantia-basket .nordantia-drink div,
.nordantia-basket .nordantia-extra div {
    width: 50%;
	text-align: left;
}

.nordantia-basket .nordantia-total h4 {
    color: #737373;

}

.nordantia-basket h5 {
    margin: 0;
    color: #4d4d4d;
    font-size: 16px;
    font-weight: normal;
    text-align: left;
}

.nordantia-basket h6 {
    margin: 0;
    color: #737373;
    font-size: 16px;
    font-weight: normal;
}

.nordantia-basket .nordantia-total {
    display: flex;
    width: 100%;
    padding: 10px 0;
    justify-content: space-between;
    border-top: 1px solid #f0edf2;
}

.nordantia-basket .nordantia-total .nordantia-price {
    font-size: 16px;
}

.nordantia-comment {
    margin: 15px;
}

.nordantia-basket .nordantia-comment h4 {
    color: #b3b3b3;
    margin: 0;
    padding: 0 0 8px;
    font-size: 16px;
    font-weight: normal;
}

.nordantia-basket .nordantia-comment textarea {
    background-color: #f5f6f7;
    border-radius: 8px;
    padding: 12px;
    outline: none;
    resize: none;
    height: 72px;
    width: 100%;
}

.nordantia-basket .nordantia-comment textarea::placeholder {
    color: #b3b3b3;
}

.nordantia-basket .nordantia-warning {
    display: flex;
    align-items: center;
    background: #fff7f5;
    border-radius: 8px;
    padding: 12px 8px;
    color: #ff6a4d;
    gap: 10px;
}

.nordantia-basket .nordantia-warning .nordantia-desc {
    font-weight: 400;
    font-size: 14px;
}

.nordantia-basket .nordantia-warn {
    width: 46px;
    height: 20px;
    background-size: 20px;
}

/* end of basket styles */



/* drinks modal style */
#drinks_modal .nordantia-modal {
    height: fit-content;
    min-height: 300px;
    gap: 12px;
    justify-content: flex-start;
}

#drinks_modal .nordantia-drinks {
    background-color: #ffffff;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    padding: 0 12px;
    /*max-height: 500px;*/
    overflow-y: scroll;
}

#drinks_modal .nordantia-drink {
    display: flex;
    width: 100%;
    justify-content: space-between;
    padding: 9px 0;
    border-bottom: 1px solid #f5f6f7;
}

#drinks_modal .nordantia-drink h4 {
    color: #4d4d4d;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
}

#drinks_modal span.nordantia-price {
    color: #776282;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#drinks_modal button.nordantia-accept {
    border-radius: 16px;
    color: #ff6a4d;
    font-size: 18px;
    background-color: #ffffff;
    height: 53px;
}

#drinks_modal .nordantia-deactive {
    opacity: 0.5;
}

#drinks_modal .nordantia-control {
    display: flex;
    width: fit-content;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: #776282;
}

#drinks_modal div.nordantia-price {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
}

#drinks_modal .nordantia-icon {
    width: 24px;
    height: 24px;
    background-size: 20px;
    background-color: #ffeeeb;
    border-radius: 8px;
}

#drinks_modal .nordantia-plus {
    background-image: url("./images/plus.svg");
}

#drinks_modal .nordantia-minus {
    background-image: url("./images/minus.svg");
}

.nordantia-control {
    display: flex;
    min-width: 100px;
    width: fit-content;
    justify-content: flex-end;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: #776282;
}

.nordantia-control .nordantia-icon {
    width: 24px;
    height: 24px;
    background-size: 20px;
    background-color: #ffeeeb;
    border-radius: 8px;
    padding: 0px;
    background-position: center;
}

.nordantia-control .nordantia-plus {
    background-image: url("./images/plus.svg");
}

.nordantia-control .nordantia-minus {
    background-image: url("./images/minus.svg");
}

.nordantia-control .nordantia-trash {
    background-image: url("./images/trash.svg");
}

button.nordantia-back {
    border-radius: 12px;
    height: 38px;
    width: 128px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    line-height: 21px;
    letter-spacing: 0;
    color: #ff6a4d;
    background-color: #ffffff;
    border: 1px solid #ffaa99;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px 20px;
    padding: 0;
}

/* end of drinks modal style */

/* scrollbar styles */
#app ::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/* Customer Track */
#app ::-webkit-scrollbar-track {
    box-shadow: inset 0 0 2px #faf5ff;
    border-radius: 6px;
}

/* Handle */
#app ::-webkit-scrollbar-thumb {
    background: #f5f6f7;
    border-radius: 6px;
    transition: 0.4s ease;
}

/* Handle on hover */
#app ::-webkit-scrollbar-thumb:hover {
    background: #f1e5fd;
    transition: 0.4s ease;
}

@media only screen and (max-width: 800px) {
    .nordantia-categories {
        flex-wrap: initial;
        justify-content: initial;
        overflow: scroll;
    }
    .nordantia-categories a {
        cursor: pointer;
        width: fit-content;
        min-width: fit-content;
        margin: 0px 0px 7px 0px;
        padding: 2px 10px;
        font-size: 13px;
        text-align: center;
        display: flex;
        color: #000000;
        align-items: center;
        font-weight: 600;
        justify-content: center;
        flex-direction: row;
        border: none;
        border-radius: initial;
        background-color: transparent;
    }
    .nordantia-categories a.nordantia-active {
        font-weight: 500;
        font-size: 13px;
        display: flex;
        align-items: center;
        background-color: #ffeadd;
        color: #f37b2a;
        border-radius: 50px;
        border: none;
    }
    .nordantia-category-container {
        min-height: 61px;
    }
    a.nordantia-title {
    	scroll-margin-top: 50px;
	}
}

@media only screen and (max-width: 680px) {
 	a.nordantia-title {
    	font-size: 22px;
	}
	
	.nordantia-detail {
		grid-template-columns: 70% 30%;
	}

    .nordantia-items-container {
        grid-template-columns: 100%;
        gap: 4px;
    }

    .nordantia-loading-container {
        grid-template-columns: 100%;
        gap: 12px;
    }
}

@media only screen and (max-width: 400px) {
    .nordantia-modal .nordantia-banner {
        min-height: 210px;
    }
}

/* Closed modal Styles */
.restaurant-closed-modal {
    display: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.restaurant-closed-modal-content {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	text-align: center;
	flex-direction: column;
    background-color: #fefefe;
	margin-top: 20px;
    width: 90%;
    max-width: 500px;
	border-radius: 15px;
}

.restaurant-closed-modal-content p {
    margin: 20px 20px;
}

.restaurant-closed-modal-content img {
    height: 70%;
	margin-bottom: 30px;
}

.restaurant-closed-modal-close {
    color: #fff;
    float: right;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
	background-color: #FF6A4D;
	border-radius: 15px;
	margin-top: 20px;
	padding: 5px 25px;
}

.restaurant-closed-modal-close:hover,
.restaurant-closed-modal-close:focus {
    background-color: #ec5b3e;
    color: rgb(255, 255, 255);
    text-decoration: none;
    cursor: pointer;
}
