/* Globals */
* {
    font-family: 'Inter', 'Droid Arabic Kufi';
}

body {
    overflow-y: scroll;  /* show scrollbar always */
}

body:lang(ar) {
    direction: ltr;
    text-align: left;
}

body:lang(ar) {
    direction: rtl;
    text-align: right;
}

button {
    border: none;
    outline: none;
    cursor: pointer;
    user-select: none;
    -webkit-appearance: none;
}

button:focus {
    outline: none;
}

h4, h6 {
    font-weight: 600;
}

[v-cloak] {
    display: none;
}

#flat-app {
    background-color: var(--background-light);
}

#main {
    background-color: var(--background);
    box-shadow: 0 0 12pt rgba(0, 0, 0, 0.1);
}

#main.padBottom {
    margin-bottom: 80px;
}

.back-btn {
    top: 12pt;
    left: 12pt;
    width: 42pt;
    height: 42pt;
    display: flex;
    position: absolute;
    font-size: 20px;
    color: var(--primary);
    background: var(--background);
    box-shadow: 2pt 2pt 8pt rgba(0, 0, 0, 0.25);
    align-items: center;
    border-radius: 50%;
    justify-content: center;
    z-index: 1;
}

.phone .back-btn, .code .back-btn, .checkout .back-btn {
    color: var(--primary);
    box-shadow: none;
}

/* Bottom Bar */

.bottom-bar {
    width: 100%;
    bottom: 0px;
    z-index: 10;
    position: fixed;
    box-shadow: 0px -8px 8px -8px rgba(0, 0, 0, 0.2);
    z-index: 998;
}

.bottom-bar .button-wrapper {
    height: 80px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    flex-direction: row;
    background-color: var(--background);
}

.bottom-bar .button-wrapper button {
    color: var(--bottom-button-font-color);
    height: 48px;
    margin: 0 auto;
    font-size: 16px;
    max-width: 400px;
    border-radius: 4pt;
    background-color: var(--primary);
}

.bottom-bar .button-wrapper .add-to-cart-btn:not(.enabled) {
    pointer-events: none;
    background-color: var(--disabled-background);
    color: var(--disabled-color);
    border: var(--disabled-border-color) solid 1pt;
}

.bottom-bar .button-wrapper button:active {
    background-color: var(--primary-dark);
}

@media (max-width: 350px) {
    .bottom-bar .button-wrapper button{
        font-size: 12px;
    }
}

.bottom-bar .btn-place-order:not(.enabled) {
    pointer-events: none;
    background-color: var(--disabled-background);
    color: var(--disabled-color);
    border: var(--disabled-border-color) solid 1pt;
}

.bottom-bar .btn-confirm-map-location:not(.enabled) {
    pointer-events: none;
    background-color: var(--disabled-background);
    color: var(--disabled-color);
    border: var(--disabled-border-color) solid 1pt;
}

.bottom-bar .waiting-scroller {
    height: 100%;
    padding: 6pt 0pt;
}

/* Home View */

/* Header Element */

/* Banner */

.home .header .banner {
    height: 25vh;
    display: flex;
}

.home .header .banner img {
    min-width: 100%;
}

/* Header Store Title */

.home #categories-menu {
    top: 0;
    z-index: 100;
    position: sticky;
    background-color: var(--background);
}

.home .navigation-bar .navbar {
    display: flex;
    overflow-x: auto;
    font-size: 14px;
    overflow-y: hidden;
    padding: 0;
}

.home .navigation-bar .navbar .navbar-nav .nav-item {
    color: var(--font-color);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.home .navigation-bar .navbar .navbar-nav .nav-item:hover,
.home .navigation-bar .navbar .navbar-nav .nav-item.active {
    border-bottom: 3px solid var(--primary);
}

.home .navigation-bar .scroll-arrow {
    width: 64pt;
    height: 100%;
    display: flex;
    padding: 1.2rem;
    opacity: 1;
    position: absolute;
    font-size: 1.2rem;
    background: linear-gradient(-90deg, rgba(var(--background-rgb), 1) 0%, rgba(var(--background-rgb), 0) 100%);
    transition: 0.15s all;
    align-items: center;
    pointer-events: none;
    justify-content: flex-end;
}

.home .navigation-bar .scroll-arrow:lang(en) {
    right: 0;
}

.home .navigation-bar .scroll-arrow:lang(ar) {
    left: 0;
    transform: scaleX(-1);
}

.home #categories-menu:not(.showArrow) .scroll-arrow {
    opacity: 0;
}

.home .collection {
    scroll-margin-top: 60px;
    border: none;
}

.home .collection-title {
    font-size: 22px;
    font-weight: 600;
    padding-top: 8pt;
    padding-bottom: 4pt;
}

.home .card {
    background: inherit;
}

.home .card-header {
    border: 1px solid #D1D8DB;
    border-radius: 5px;
    background: inherit;
    font-size: 14px;
}

.home .card-header:hover {
    cursor: pointer;
}

.home .card-header[aria-expanded="true"] {
    border-color: var(--card-border-color);
    background-color: var(--card-expanded-background);
}

.home .card-header[aria-expanded="true"] .collection-title{
    color: var(--collection-title);
}

.home .card-header[aria-expanded="true"] i {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transform: rotate(180deg);
}

.home .header .title-section-wrapper {
    margin-bottom: -80px;
}

.home .header .title-section-wrapper .logo {
    align-self: center;
}

.home .header .title-section-wrapper .store-info .store-name {
    font-size: 32px;
    font-weight: 600;
    color: #424242;
}

.home .header .title-section-wrapper .about_us p {
    color: var(--font-color);
    font-size: 14px;
    min-height: 40px;
    line-height: 1.5;
    -webkit-line-clamp: 2;
}

.flat-topbar-container .flat-topbar .header-top {
    background-color: var(--primary);
    border-radius: 6px;
    color: #FFFFFF;
    cursor: pointer;

}
.flat-topbar-container .flat-topbar .branch-button {
    gap: 10px;
    background-color: var(--primary);
    color: var(--branch-button-font-color)
}

.banner-container > .branch-selector-container {
    display: none;
}

.flat-topbar-container .user-dropdown-menu a:hover {
    text-decoration: unset;
}

@media (min-width: 769px) {

    .flat-topbar-container {
        position: relative;
    }

    .track-order-btn-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        justify-content: center;
    }

}

@media (max-width: 768px) {

    .banner-container {
        top: -316pt !important;
    }

    .home .flat-topbar-container .flat-topbar .branch-desktop {
        display: none;
    }

    .banner-container > .branch-selector-container.appearance {
        display: block;
        color: #fff;
        cursor: pointer;
        height: 48px;
        overflow: hidden;
        border-radius: 7px;
        background: var(--primary);
        line-height: 48px;
    }
}

.home .panel-wrapper {
    padding-bottom: 8pt !important;
    margin-bottom: 8pt;
}

.home .panel-wrapper {
    border-bottom: 1px solid var(--seperator);
}

.home .footer-flat {
    margin-bottom: 12pt;
}

.home .footer-flat .dash {
    color: #ddd;
}

.home .footer-flat .static-page-link, .footer-text {
    color: var(--gray);
    cursor: pointer;
    padding: 4pt;
    font-size: 14px;
}

.home .footer-flat .static-page-link:hover {
    color: var(--gray-dark);
    text-decoration: none;
}

.footer-text {
    cursor: text;
}

.footer-text a {
    color: var(--font-color);
}

.home .footer-flat .partner-logo {
    height: 24px;
    display: flex;
    margin: 8px;
    justify-content: center;
}

.home .footer-flat .partner-logo img {
    max-width: 100%;
    max-height: 100%;
}

.home .footer-flat .contact-us {
    font-size: 14px;
    color: #999;
}

.home .report-abuse-title {
    color: var(--gray);
    text-decoration: underline;
    cursor: pointer;
    text-underline-offset: 0.4rem;
}

.home .report-abuse-title:hover {
    opacity: 0.7;
}

/* Checkout Button */

.checkout-floater .cart {
    flex: 1;
    position: relative;
}

.checkout-floater .cart i {
    font-size: 24px;
}

.checkout-floater .cart .circular {
    border: solid 2pt var(--bottom-button-font-color);
    min-width: 30px;
    min-height: 30px;
    font-weight: normal;
}

.button-wrapper .label {
    flex: 1;
}

.button-wrapper .price {
    flex: 1;
}

.total-item-price {
    font-size: 20px;
}

/* Product View */

.product .header .product-image {
    position: relative;
    display: flex;
    height: 240px;
}

.product .header .product-image img.iiz__img:not(.iiz__img--hidden) {
    height: 240px;
}

.product .header .product-image figure {
    width: 100%;
}

.product .header .product-image img {
    min-width: 100%;
}

/* The Modal (background) */
.image-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 999; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

.image-modal img.round {
    border-radius: var(--card-round);
}
.image-modal img.sharp {
    border-radius: var(--card-sharp);
}

/* Modal Content (image) */
.image-modal-content {
    margin: auto;
    display: block;
    min-width: unset !important;
    max-width: 80%;
}

/* The Close Button */
.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
    color: #bbb;
    cursor: pointer;
    text-decoration: none;
}
.product .header .product-image .product-image-footer {
    width: 100%;
    position: absolute;
    bottom: 0;
}

#show-image-modal {
    margin: 15px;
    padding: 10px 15px;
    color: white;
    background-color: rgba(0,0,0,0.1);
    border: 1px solid white;
    border-radius: 5px;
    height: fit-content;
}

.product .header .product-image .discount-badges .discount-badge img{
	height: auto;
}

.discount-badges .discount-badge{
	position: relative;
    height: 72px;
    width: 75px;
    margin: 10px 5px;
}
.discount-badges .discount-badge span{
	position: absolute;
    z-index: 1;
	top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	display: flex;
    justify-content: center;
    align-items: center;
	line-height: 19px;
	font-weight: 900;
    font-size: 16px;
	font-style: italic;
    color: #fff;
    text-shadow: 2px 2px 7px rgb(0 0 0 / 50%);
    text-align: center;
}

.product .quantity {
    border-top: 1px solid rgba(189, 189, 189, 0.1);
}

.product .product-info {
    padding: 8pt;
}

.product .product-info h1 {
    font-size: 20px;
    color: var(--font-color);
	overflow: hidden;
	text-overflow: ellipsis;
    font-weight: 600;
}

.product .product-info .title {
    padding-inline-end: 16px;
}

.product .product-info .price {
    white-space: nowrap;
    font-size: 20px;
}

.product .price {
    color: var(--red) !important;
}
.product .product-info .custom-label{
    font-size: 14px;
    font-weight: 400;
    color: var(--font-color);
}

@media (max-width: 576px){
    .product .product-info .price{
        text-align: initial!important;
    }
}

.product .description {
    font-size: 14px;
    color: var(--gray-dark);
}

.product .quantity > .label {
    font-weight: 600;
    font-size: 16px;
    color: var(--font-color);
}

.product .quantity .quantity-selector .label {
    display: flex;
    min-width: 64px;
    justify-content: center;
    font-size: 14px;
    color: var(--font-color);
}

.custom-field-form .custom-option input[type=radio]:checked ~ label .radio {
    border: 2px solid var(--primary) !important;
}

.custom-field-form .custom-option input[type=radio]:checked ~ label .radio > .circle {
    width: 10px;
    height: 10px;
    background: var(--primary) !important;
}

.custom-field-form .custom-option input[type=checkbox]:checked ~ label .check {
    background: var(--primary) !important;
    border: 2px solid var(--primary) !important;
}

/* Phone verification view */

.phone input.phone-num {
    background-color: var(--input-background);
    border: 1px solid var(--input-border-color);
    color: var(--input-color);
    border-radius: 4pt !important;
    font-size: 14px;
}

.phone input:focus  {
    box-shadow: 0 0 3pt 2pt var(--input-focus-color);
    background-color: var(--input-background);
}

.phone {
    gap:8px
}

.phone .multiselect {
    box-sizing: border-box;
}

.phone .multiselect span {
    margin: 0px;
}

.phone .multiselect {
    display: flex;
    background-color: var(--input-background) !important;
    border: 1px solid var(--input-border-color) !important;
    color: var(--font-color) !important;
    font-weight: 600 !important;
    flex-direction: row-reverse;
    justify-content: space-evenly;
}

.phone .multiselect input {
    margin: 0px;
    color: var(--input-color);
    background-color: var(--input-background);
}

.phone .multiselect__select {
    display: flex;
    position: relative;
    margin-bottom: 4px;
    align-items: center;
}

.phone .flag-select {
    display: flex;
    color: var(--input-color);
}

.phone .multiselect__single {
    padding: 0px;
    background-color: var(--input-background);
}

.phone .multiselect__single:focus {
    background-color: var(--input-background);
}

.phone .multiselect__select:before {
    top: 0px;
}

.phone .multiselect__tags {
    min-width: 40px;
    border: none;
    padding: 8px !important;
    display: flex;
    align-items: center;
    background-color: var(--input-background);
}

.phone .multiselect--above .multiselect__content-wrapper {
    bottom: unset !important;
}

.phone .multiselect__content-wrapper {
    top: 100%;
    width: 340px;
    color: var(--input-color);
    background-color: var(--input-background);
    border: 1px solid var(--input-border-color);
}

.phone .multiselect__content-wrapper:lang(en) {
    left:  0px;
}

.phone .multiselect__content-wrapper:lang(ar) {
    right: 0px;
    text-align: right;
}

.phone .multiselect__content-wrapper::-webkit-scrollbar {
    width: 10px;
}

.phone .multiselect__content-wrapper::-webkit-scrollbar-track {
    background: var(--scroll-track);
}

.phone .multiselect__content-wrapper::-webkit-scrollbar-thumb {
    background-color: var(--scroll-thumb);
}

.phone .multiselect__content-wrapper::-webkit-scrollbar-corner {
    background: var(--scroll-thumb);
}

.phone .multiselect__option--selected {
    color: var(--input-color);
    background-color: var(--input-border-color);
}

.phone .multiselect .multiselect__input {
    min-width: initial !important;
}

.multiselect--active {
    border: none;
}


.verify-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--font-color);
    text-align: center
}

.verify-sub-title {
    color: var(--gray-dark);
    font-size: 14px;
    text-align: center
}

.multiselect__content-wrapper { 
    border: solid 1px var(--input-border-color);
}

.multiselect__element {
    background-color: var(--input-background) ;
    color: var(--font-color) ;

}

.multiselect__input, .multiselect__single {
    background-color: var(--input-background);
    color: var(--font-color);
}

/* Code verification view  */

.code input {
    font-size: 16px;
    color: var(--font-color);
    text-align: center;
    padding: 8pt;
    margin-right: 10px;
    width: 60px;
    height: 60px;
    border: none;
    border-bottom: 1px solid var(--seperator);
    outline: none;
    border-radius: 0;
    background-color: var(--input-backgound);
}

.code input:focus {
    border-bottom: 4px solid var(--primary);
}

.code input.filled {
    color: var(--gray-dark);
}

.code input[type=number]::-webkit-inner-spin-button,
.code input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.code .change-number {
    color:#ef5350;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
}

.code .invalid-code {
    font-size: 14px;
    color:#ef5350;
    text-align: center;
}

.code .invalid-code:not(.visible) {
    visibility: hidden;
}

.resend-code-link {
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
}

.resend-code-seconds{
    color: var(--primary);
    font-weight: 600;
}

.code .phone-number * {
    font-size: 14px;
    text-align: center;
    font-weight: bold;
}

.code .phone-number .user-phone-number {
    display: flex;
    justify-content: center;
}

/* Checkout View */

.checkout section,
.basket section {
    font-size: 16px;
}

.checkout .header,
.basket .header {
    text-align:center;
    font-weight: 500;
    font-size: 20px;
    width: 100%;
    color: #424242;
    padding: 8px 0px;
}

.checkout .header img,
.basket .header img {
    width: 16pt;
}

.checkout .sub-header,
.basket .sub-header,
.order .sub-header {
    font-size: 16px;
    font-weight: 600;
    color: var(--font-color);
    padding: 14px 0px;
}

.basket .sub-header {
    width: 100%;
}

.checkout .basket-link {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
    text-decoration: underline;
    cursor: pointer;
}

.basket .icon-primary,
.order .icon-primary {
    padding: 5px;
    color: var(--bottom-button-font-color);
    background-color: var(--primary);
    text-align: center;
    width: 30px;
    height: 30px;
    border-radius: 3px;
}

.adjustment.promotion {
    color: var(--red);
    font-weight: bold;
}

.checkout .payment-method {
    background-color: var(--square-option-background-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    padding: 4pt 12pt;
    transition: all 0.1s;
    border-radius: 4pt;
    text-align: center;
    width: 100px;
    min-height: 100px;
}

.checkout .payment-method.selected {
    background-color: var(--square-option-hover-color);
    border: solid 1pt var(--square-option-border-color);
}

.checkout .payment-method:hover {
    background-color: var(--square-option-hover-color);
}

.checkout .payment-info {
    font-size: 14px;
    font-weight: 500;
}

p.tip {
    margin: 0;
    padding: 10px;
    background-color: var(--tip-background-color);
    border: 1px solid #DCDCDC;
    border-radius: 4px;
}

.checkout .loading {
    color: var(--disabled-color);
}

.checkout .order-error-message{
    border-radius: 8px;
    background: var(--toast-background);
    border: 1px solid #FFBD00;
}

/* User account */

.checkout .account .user-name label {
    margin-bottom:0px;
    align-self: center;
    color: var(--font-color);
    width: 100%
}

.checkout .account .user-name input {
    border: 1px solid var(--input-border-color);
    border-radius: 4pt;
    color: var(--input-color);
    text-align: end;
    background-color: var(--input-background);
}
.checkout .account .user-name input:focus {
    box-shadow: 0 0 3pt 2pt var(--input-focus-color);
    background-color: var(--input-background);
    color: var(--input-color);
    border: none;
    outline: none;
}

.checkout .account .user-phone label {
    align-self: center;
    color: var(--font-color);
    margin-bottom:0px;
}

.checkout .account .user-phone p {
    align-self: center;
    color: var(--font-color);
    margin-bottom:0px;
}

/* Delivery method */

.checkout .delivery .square-option input[type=radio]+label {
    padding: 4pt 12pt;
    border-radius: 4pt;
    text-align: center;
    user-select: none;
    cursor: pointer;
    margin-bottom: 0px;
    background-color: var(--square-option-background-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    width: 100px;
    height: 100%;
    min-height: 100px;
}

.checkout .delivery .square-option input[type=radio]+label:hover {
    background-color: var(--square-option-hover-color);
}

.checkout .delivery input[type=radio] {
    display: none;
}

.checkout .delivery .square-option input[type=radio]:checked+label {
    background-color: var(--square-option-hover-color);
    border: solid 1pt var(--square-option-border-color);
}

.checkout .payment .summary {
    transition-property: all;
    transition-duration: 0.1s;
}

.checkout .payment .summary:not(.loading) {
    opacity: 1;
}

.checkout .payment .summary.loading {
    opacity: 0.25;
}

/* Location */

.checkout,
.basket {
    background: var(--background-light);
}

.checkout section,
.basket section {
    margin-top: 20pt;
    padding: 14pt;
    background: var(--background);
}
.checkout section.error{
    border: 1px solid var(--red);
}
.checkout section.picker .no-data{
    padding: 16pt;
}
.checkout section.top,
.basket section.top {
    height: 64pt;
    margin-top: 0;
}

.checkout .location .set-location * {
    cursor: pointer;
}

.checkout .location .set-location {
    border-radius: 20pt;
    padding: 6pt;
    cursor: pointer;
    border: none;
    outline: none !important;
    user-select: none;
    background-color: var(--primary);
    align-self: center;
    box-shadow: none;
    width: 150px;
    position:relative;
    bottom: 54px;
    margin: 0 auto;
}

.checkout .location .set-location label {
    align-self: center;
    color: white;
    margin-bottom: 0px;
}

.checkout .location .set-location label i {
    color: white;
    margin-inline-end: 6px;
}

.checkout .user-field {
    height: 32pt;
    display: flex;
    align-items: center;
}

.checkout .changeAddressLink {
    color: var(--primary);
    cursor: pointer;
    border: solid 2pt var(--primary);
    padding: 4pt 8pt;
    transition: background 0.2s;
    font-weight: bold;
    border-radius: 4pt;
}

.checkout .changeAddressLink:hover {
    color: white;
    background: var(--primary-dark);
}

/* Add Note */

.checkout .note textarea {
    border: 1px solid var(--input-border-color);
    border-radius: 4pt;
    color: var(--input-color);
    background-color: var(--input-background);
}
.checkout .note textarea:focus {
    outline: none;
    border: none;
    background-color: var(--input-background);
    color: var(--input-color);
    box-shadow: 0 0 3pt 2pt var(--input-focus-color);
}
.checkout .note .code-result{
    color: var(--gray-dark)
}
.checkout .note .code-result:not(.visible) {
    display: none;
}


/* Promotion */

.checkout .promotion input {
    border: 1px solid var(--input-border-color);
    border-radius: 4pt;
    color: var(--input-color);
    background-color: var(--input-background);
}
.checkout .promotion input:focus {
    outline: none;
    border: none;
    background-color: var(--input-background);
    color: var(--input-color);
    box-shadow: 0 0 3pt 2pt var(--input-focus-color);
}
.checkout .promotion .code-result{
    color: var(--gray-dark)
}
.checkout .promotion .code-result:not(.visible) {
    display: none;
}

/* Payment summary */

.checkout .cart-line {
    display: flex;
    margin-bottom: 12pt;
    justify-content: space-between;
}

.checkout .cart-line.bold {
    font-weight: 600;
}

.checkout .payment .payment-total {
    font-weight: 600;
    color: #424242;
}


/* Order View */

.order {
    background: var(--background-light);
}

.order section:first-of-type {
    margin-top: 0;
}

.order section {
    margin-top: 20pt;
    padding: 14pt;
    font-size: 16px;
    background: var(--background);
}

.order .sub-header {
    font-weight: bold;
}

#purchase-list {
    padding: 0;
    margin: 0;
    list-style: none;
}

#purchase-list img {
    width: 60px;
    height: 60px;
}

#purchase-list .product-image.round img{
    border-radius: var(--card-round);
}

#purchase-list .product-image.sharp img {
    border-radius: var(--card-sharp);
}

#purchase-list .custom-fields {
    color: #999999;
}

#delivery-details img {
    height: 42px;
    width: 42px;
    padding: 10px;
    border-radius: 5px;
    background-color: var(--background-light);
}

.order .header {
    height: 80px;
    color: #424242;
    font-size: 20px;
    font-weight: 500;
}

.order .message {
    position: relative;
    width: 100%;
    font-size: 20px;
    overflow: hidden;
}

@media (max-width: 576px) {
    .order .state-message {
        text-align: center;
        align-items: center;
    }
}

.order .message > div {
    flex-wrap: wrap-reverse;
}

.order .message .title {
    font-weight: 600;
    color: var(--font-color);
}

.order .message .description {
    color: var(--gray-dark);
    font-size: 14px;
    width: 220px;
}

.order .message img {
    height: 100px;
    width: 100%;
}

.order .state {
    width: 100%;
}

.order .progress-bar {
    display: flex;
    position: relative;
    justify-content: center;
    border-radius: 10px;
    height: 10px;
    max-width: 600px;
    background: var(--background-light);
}

.order .progress-bar .bar {
    left: 0px;
    width: 0px;
    height: 100%;
    border-radius: 10px;
    transition-property: all;
    transition-duration: 0.5s;
    background-color: var(--primary);
    position: absolute;
}


.order .progress-bar:lang(ar) {
    transform: scaleX(-1);
}

.order .progress-bar .bar.checked {
    width: 100%;
}

.order .estimated-delivery .message {
    color: var(--gray-dark);
    font-size: 16px;
}

.order .estimated-delivery .countdown {
    color: var(--font-color);
    font-size: 18px;
    font-weight: 600;
}

.stripes {
    background-size: 30px 30px;
    background-image: linear-gradient(135deg,
        rgba(255, 255, 255, .15) 25%,
        transparent 25%, transparent 50%,
        rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%,
        transparent 75%, transparent);
    animation: animate-stripes 3s linear infinite;
    }

@keyframes animate-stripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 60px 0;
    }
}

.slide-enter-active {
    position: absolute;
    transition: all 1s ease;
}
.slide-leave-active {
    transition: all 1s ease;
}
.slide-enter  {
    transform: translateX(1000px);
}

.slide-leave-to {
    transform: translateX(-1000px);
}


/* Quantity Selectors */

.quantity .adjust-quantity-btn {
    width: 40px;
    margin: 0;
    height: 40px;
    display: flex;
    position: relative;
    border: 2px solid var(--primary);
    border-radius: 50%;
    background-color: var(--background);
    align-items: center;
    justify-content: center;
}

.quantity .adjust-quantity-btn i {
    color: var(--primary);
    font-size: 12px;
}

.quantity .adjust-quantity-btn {
    cursor: pointer;
    outline: none !important;
    transition-property: background;
    transition-duration: 0.2s;
}


.quantity .adjust-quantity-btn:active {
    background-color: var(--primary-dark);
    color: white;
}
.quantity .adjust-quantity-btn:active i {
    color: white;
}
/* Helper Styles */

.circular-btn-lg {
    width: 48px;
    height: 48px;
    display: flex;
    font-size: 20px;
    border-radius: 100%;
    background-color: white;
    justify-content: center;
}

.circular-btn-lg i {
    color: #333;
    font-size: 26px;
}

.hidden {
    visibility: hidden;
}

.truncate {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.cover img {
    object-fit: cover;
    object-position: 50% 50%;
}

.pushable {
    top: 0;
    position: relative;
}

.pushable:active {
    top: 2px;
}

.alpha-num:lang(ar) {
    text-align: right;
}

/* Marker at center of Google Map */

#map.loaded:after {
    top: 50%;
    left: 50%;
    width: 22px;
    height: 40px;
    margin: -40px 0 0 -11px;
    display: block;
    content: ' ';
    position: absolute;
    background: url('https://maps.gstatic.com/mapfiles/api-3/images/spotlight-poi_hdpi.png');
    pointer-events: none; /* This disables clicks on the marker. Not fully supported by all major browsers, though */
    background-size: 22px 40px; /* Since I used the HiDPI marker version this compensates for the 2x size */
}

.custom-field-form .price {
    font-family: 'Inter', 'Droid Arabic Kufi' !important;
}

/* Home View Header and Shader */

.home .header {
    position: relative;
}

.shader {
    width: 100%;
    color: white;
    height: 100%;
    display: flex;
    padding: 24pt 12pt 24pt 12pt;
    position: absolute;
    background: linear-gradient(0, rgba(0,212,255,0) 75%, rgba(0, 0, 0, 0.3) 100%), linear-gradient(0, rgba(0, 0, 0, 0.3) 0%, rgba(0,212,255,0) 37%);
    flex-direction: column;
    justify-content: flex-end;
}

.shader .store-name {
    font-size: 24px;
    font-weight: 600;
}

.home .header {
    position: relative;
}

.home .header .banner {
    height: 180pt;
}

.shader .logo {
    min-width: 64pt;
    min-height: 64pt;
    width: 64pt;
    height: 64pt;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4pt 8pt rgba(0, 0, 0, 0.2);
}

.shader .logo img {
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .shader {
        padding: 16pt 12pt 16pt 12pt;
    }
    .shader .logo {
        min-width: 48pt;
        min-height: 48pt;
        width: 48pt;
        height: 48pt;
    }
    .home .header .title-section-wrapper {
        margin-bottom: -70px;
    }
}

/* Track Order Button */

.track-order-btn-wrapper {
    display: flex;
    z-index: 10;
    pointer-events: none;
}

.track-order-btn {
    left: 0;
    cursor: pointer;
    padding: 4px 8px;
    display: flex;
    font-size: 14px;
    background: #25262B;
    transition: all 0.3s;
    align-items: center;
    border-radius: 37px;
    pointer-events: all;
    color: #FFFFFF;
}

.track-order-btn:hover {
    box-shadow: 0pt 4pt 8pt rgba(0, 0, 0, 0.3);
}

.track-order-btn i {
    color: #43a047;
}

/* Store Status */

.store-status-wrapper {
    color: white;
    width: 100%;
    padding: 12pt;
    text-align: center;
    background: #ff8f00;
    font-size: 14px;
    position: fixed;
    top: 0;
    z-index: 100;
    max-width: 640pt;
}

/* Search View */


.search .no-results {
    color: var(--gray-dark);
    margin: 1rem;
    display: flex;
    font-size: 14px;
    align-items: center;
    border-radius: 12pt;
    flex-direction: column;
}

.search .no-results .title {
    font-size: 20px;
    margin-bottom: 0.75rem;
}

/* Map View */

.map .map-container {
    width: 100%;
    display: flex;
    position: relative;
}

.map #map {
    flex-grow: 1;
    position: relative;
    width: 100%;

}

.map .current-location-container {
    position: relative;
    pointer-events: none;
    bottom: 0;
    z-index: 100;
}

.map .current-location {
    right: 20px;
    bottom: 74pt;
    cursor: pointer;
    z-index: 10;
    padding: 12pt;
    display: flex;
    position: absolute;
    font-size: 18px;
    background: white;
    box-shadow: 0 2pt 4pt rgba(0, 0, 0, 0.2);
    transition: all 0.2s;
    align-items: center;
    border-radius: 100%;
    pointer-events: all;
}

@media (hover: hover) {
    .map .current-location:hover {
        box-shadow: 0 4pt 8pt rgba(0, 0, 0, 0.2);
    }
}

.map .current-location img {
    height: 1em;
}

.map .search-bar {
    width: 100%;
    z-index: 20;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2pt 4pt rgba(0, 0, 0, 0.2);
    flex-direction: column;
    background: var(--background);
}

.map .search-bar .result {
    padding: 1rem 1.2rem;
    font-size: 14px;
    border-bottom: solid 1pt rgba(0, 0, 0, 0.05);
}

.map .search-bar .result:nth-child(2) {
    border: solid 1pt rgba(0, 0, 0, 0.05);
}

.map .search-bar .result i {
    top: 2pt;
    margin: 0 8pt;
    opacity: 0.15;
    position: relative;
    font-size: 1.5rem;
    margin-inline-end: 1rem;
}

.map .search-bar.showResults {
    height: 100vh;
}

.map .search-bar .btn-back i {
    color: #555;
    padding: 4pt;
    margin-left: 14pt;
}

.map .result {
    cursor: pointer;
}

@media (hover: hover) {
    .map .result:hover {
        background: rgba(0, 0, 0, 0.025);
    }
}

.map .address-box {
    top: 74pt;
    z-index: 1;
    padding: 8pt 16pt;
    position: fixed;
    font-size: 14px;
    background: white;
    text-align: center;
    box-shadow: 0 2pt 4pt rgba(0, 0, 0, 0.1);
    border-radius: 4pt;
}

.map .deliver-to {
    color: #455a64;
    font-size: 12px;
    text-align: center;
}

.banner-container {
    z-index: 2;
    position: sticky;
    box-shadow: 0 2pt 4pt rgba(0, 0, 0, 0.1);
    top: -280pt;
}

.banner-container:not(.store-available) {
    padding-top: 53px;
}


.navbar {
    user-select: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.navbar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.navbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.nav-item {
    padding: 12pt;
}

.message button {
    color: var(--primary);
    border: solid 2pt #eee;
    border: solid 2pt var(--primary);
    background: none;
    font-weight: bold;
    border-radius: 32pt;
}

.message button.primary {
    color: white;
    background: var(--primary);
}

/* Static Page View */

.static-page {
    margin-bottom: 80px;
}

.static-page .title {
    padding: 32pt 0;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
}

.spinner-border{
    display:inline-block;
    width:2rem;
    height:2rem;
    vertical-align:text-bottom;
    border:.25em solid var(--primary);
    border-right-color:transparent;
    border-radius:50%;
    -webkit-animation:spinner-border .75s linear infinite;
    animation:spinner-border .75s linear infinite
}
.spinner-border-sm{
    width:1rem;
    height:1rem;
    border-width:.2em
}

.branches-horizontal-splitter {
    margin: 20px 0;
}

.branches-horizontal-splitter p {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--input-placeholder-color);
    color: var(--input-placeholder-color);
    line-height: 0.1em;
    margin: 10px 0 20px;
}

.branches-horizontal-splitter p span {
    background:var(--background);
    padding:0 10px;
}

#branchesDialog {
    padding-right: 0px !important;
}

#branchesDialog .modal-content {
	border-radius: 6px;
	border: none;
	padding: 48px;
    background-color: var(--background) !important;
}

#branchesDialog .modal-body {
	padding: 40px 32px 32px;
}

.branch-selector-title {
	font-size: 18px;
	margin-bottom: 24px;
}

.branch-items-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(48%, 1fr));

    gap: 21px;
}

.branch-items-container > .branch-item {
	height: 53px;
    width: 96%;

}

.branch-items-container > .branch-item .btn {
	font-size: 14px;
    color: var(--bottom-button-font-color);
	background-color: var(--primary);
	border-color: var(--primary);
	height: 100%;
	border-radius: 10px;
}

.branch-items-container > .branch-item .btn span {
	max-width: 90%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.branch-items-container > .branch-item .btn img {
	margin-left: auto;
}

.layout-right .branch-items-container > .branch-item .btn img {
	margin-right: auto;
	margin-left: initial;
	transform: rotate(180deg);
}

.branch-items-container > .branch-item .btn:hover,
.branch-items-container > .branch-item .btn:active,
.branch-items-container > .branch-item .btn:focus,
.branch-items-container > .branch-item .btn:focus:active{
	background-color: var(--primary-dark);
	border-color: var(--primary-dark);
	box-shadow: none;
}

.branch-items-button button {
    background-color: #F3F3F3;
    width: 150px;
    height: 48px;
    border-radius: 10px;
    margin-top: 24px;
    font-size: 14px;
    font-weight: 500;
}

.branches-dialog-input {
    height: 53px;
    width: 50%;
    background-color: var(--background);
}

@media (max-width: 991px) {
    .branches-dialog-input {
        width: 100%;
    }
}

.branches-dialog-input input {
    font-size: 1rem;
    height: 36px;
    background-color: var(--background);
    color: var(--font-color);
}

input:focus {
    outline: none;
}


.branches-dialog-input input::placeholder {
    color: #D3D3D3;
    font-weight: 500;
}

.product-price .discount:lang(ar){
    direction: ltr;
    flex-direction: row-reverse;
}

@media(hover: hover) {
	.bottom-bar .button-wrapper button:hover {
		background-color: var(--primary-dark);
	}
    .quantity .adjust-quantity-btn:hover {
        background-color: var(--primary-dark);
        color: white;
    }
    .quantity .adjust-quantity-btn:hover i {
        color: white;
    }
}


.share-product{
    cursor: pointer;
}

.share-copy-link-icon{
    width: 60px;
    height: 60px;
    cursor: pointer;
    background-color:var(--share-copy-link-icon-background);
    border-radius: 100%;
    text-align: center;
    margin: 8px auto;
    color: var(--share-copy-link-icon-color);
}

.whatsapp-float {
    z-index: 9999;
    right: 36px!important;
    bottom: 36px!important;
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 70px!important;
        right: 36px!important;
    }
}


/* report-abuse */

.report-abuse {
    background: var(--background-light);
    background: var(--background);
}

.container-report-abuse-flat {
    width: 95%;
    justify-content: center;
    margin: 20px auto 0;
}

.title-description-flat h1 {
    font-size: 20px;
    line-height: 30px;
    color: var(--font-color);
}

.title-description-flat p {
    color: var(--gray-dark);
    font-size: 16px;
    font-weight: 500;
}

.rebort-abuse-flat-inputs {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.rebort-abuse-flat-inputs label {
    color: var(--font-color);
    font-weight: 500;
}

.field {
    border: 1px solid var(--input-border-color);
    border-radius: 8px;
    background-color: var(--input-background);
}

.rebort-abuse-flat-inputs input {
    height: 46px;
    

}

.rebort-abuse-flat-inputs input:focus ,
.rebort-abuse-flat-inputs textarea:focus {
    box-shadow: 0 0 3pt 2pt var(--input-focus-color);
    background-color: var(--input-background);
}

.x-phone-report-abuse input:focus {
    box-shadow: initial !important;
    background-color: initial !important;
}


.rebort-abuse-flat-inputs textarea {
    height: 129px;
    resize: none;
}


.phone-email-flat {
    display: flex;
    gap: 16px;
    
}

@media (max-width: 768px) {
    .report-abuse {
        background: var(--background-light);
    }
    .phone-email-flat {
        gap: 32px;
        flex-direction: column;
    }
    .report-abuse section.top ,
    .success-message section.top  {
        height: 64pt;
        margin-top: 0;
    }
    
    .report-abuse section {
        margin-top: 20pt;
        padding: 14pt;
        background: var(--background);
    }
}

.report-abuse-buttons-flat {
    height: 80px;
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
    background-color: var(--background);
}

.container-report-abuse-flat {
    color: var(--gray-dark)
}

.report-abuse-flat-submit-button {
    color: white;
    height: 48px;
    font-size: 16px;
    border-radius: 4pt;
    background-color: var(--primary);
    width: 347px;
    height: 49px;
    font-weight: 500;
}

.phone-number .multiselect {
    height: 46px;
    border-radius: 8px !important;
}

/* success-message */

.success-message-container {
    height: 57vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap:22px;
}


.success-message h1 {
    font-size: 20px;
    color: var(--font-color);
    font-weight: bold;
}

.success-message p {
    font-size: 16px;
    color: var(--gray-dark);
    font-weight: 500;
}

.success-message-t-d {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.go-to-home {
    height: 80px;
    display: flex;
    justify-content: center;
    gap: 32px;
    align-items: center;
    background-color: var(--background);
}

.go-to-home button {
    width: 347px;
    height: 49px;
    background-color: var(--primary);
    color: var(--primary-font-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-message section { 
    margin-top: 20pt ;
    background: var(--background);
    padding: 14pt;
}

.success-message section.top {
    height: 64pt;
    margin-top: 0;
}

@media (max-width: 768px) {

    .success-message {
        background: var(--background-light);
    }
    
    .success-message section {
        margin-top: 20pt;
        padding: 14pt;
        background: var(--background);
    }

    .success-message section.top  {
        height: 64pt;
        margin-top: 0;
    }

}

/* loading spinner for search on flat */
.lds-ring-container {
    display: flex;
    justify-content: center;
}

.lds-ring {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
    z-index: 10000000000000000;
}

.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 64px;
    height: 64px;
    margin: 8px;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.lds-bright {
    border: 8px solid var(--gray-dark);
    border-color: var(--gray-dark) transparent transparent transparent;
}

.lds-dark {
    border: 8px solid var(--primary);
    border-color: var(--primary) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}

@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.serach-location-nearest-branch {
    background-color: var(--background);
    border: solid 0.5px var(--input-placeholder-color);
    position: absolute;
    width: 50%;
    height: auto;
    max-height: 300px;
    overflow-y: auto;
    padding-top: 15px;
    border-radius: 0px 0px 8px 8px;
    color: var(--font-color);
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
}

.result-search-nearest-branch {
    display: flex;
    padding-inline-start: 11px;
    justify-content: flex-start;
    gap: 10px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .serach-location-nearest-branch {
        width: 100%;
    }
}

@media (min-width: 340px){
    .short-address-input{
        min-width: 350px;
    }
}

.sh-address-btn{
    max-height: 2.5rem;
    width: 7.665rem;
    white-space: nowrap;
}

.sh-address-btn-ar{
    width: 10.625rem;
}

.pe-none{
    pointer-events: none;
}

/* Flat Profile style */

.flat-profile-container {
    padding: 7rem 0 5rem 0;
}

.profile-orders-title {
    color: var(--user-auth-color);
    gap: 14px;
}

.profile-orders-title  i {
    font-size: 2.5rem;
}
.profile-orders-title h1 {
    font-size: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 0;
}

.flat-profile-form {
    width: 100%;
    max-width: 500px;
    gap: 3.125rem;
}

.flat-profile-form input:focus {
    box-shadow: 0 0 3pt 2pt var(--input-focus-color);
    background-color: var(--input-background);
}

.delete-profile-container {
    border: 1px solid #DBDBDB;
	border-radius: 8px;
}

.delete-profile-container button {
    padding: 12px 24px; 
    border-radius: 4px; 
    color: #777777;
}

.confirm-delete-profile-container {
    border: 1px solid #DBDBDB;
	border-radius: 8px;
    gap: 0.25rem;
    padding-inline-start: 1.5rem;
    padding-inline-end: 3rem;
}

.confirm-delete-profile-container div:first-child label {
    font-weight: 600;
}

.confirm-delete-profile-container div:nth-child(2) label {
    font-size: 14px;
    font-weight: 500;
}

.confirm-delete-profile-container p {
    background: rgba(235, 57, 75, 0.15);
    padding: 8px;
    border: 1px solid var(--primary);
    border-radius: 8px;
    font-size: 14px;
}

.confirm-delete-profile-buttons button{
    padding: 11px 16px; 
    border-radius: 7px;
}
.confirm-delete-profile-buttons button[name="delete"] {
    background-color: var(--primary);
    color: #ffffff;
}

.flat-secondary-button {
    background-color: #F1F1F1;
}

/* End Flat Profile style */


/* Orders History style */

.flat-order-history-cards {
    width: 100%;
    max-width: 650px;
    gap: 3.125rem;
}

.flat-orders-container {
    padding: 5rem 0 7.5rem 0;
}

.flat-order {
    padding: 12px 12px;
    box-shadow: 0px 0px 7.1219px rgba(0, 0, 0, 0.15);
    background-color: var(--input-background);
}

.flat-orders-container .no-orders {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

/* End Orders History style */

/*  Topbar style */

.flat-topbar {
    min-height: 60px;
    padding: 10px 25px;
}

.login-button span {
    font-weight: 500;
}

.flat-topbar .dropdown-profile-menu {
    padding: 20px 40px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    top: 17px !important;
    background-color: var(--background)
}

.flat-topbar .dropdown-profile-menu .dropdown-profile-item {
    padding-bottom: 16px;
    color: var(--header-color);
    gap: 8px;
}

.flat-topbar .dropdown-profile-menu .dropdown-profile-item:not(:last-child) {
    border-bottom: 1px solid  var(--header-dropdown-border);
}

.flat-topbar .dropdown-profile-menu .dropdown-profile-item span {
    font-size: 14px;
    font-weight: 300;
}

.dropdown-profile-item:active {
    background-color: transparent;
}

.dropdown-profile-item:hover {
    background-color: transparent;
}

@media (max-width: 768px) {
    .flat-topbar .dropdown-profile-menu {
        top: 11px !important;
    }
    .flat-topbar {
        padding: 10px 10px;
    }
}

/* End Topbar style */

/* Sign In style */

.user-auth-container {
    padding: 5rem 0 5rem 0;
}

.user-auth {
    gap:2rem;
}

.user-auth-form {
    width: 100%;
    max-width: 512px; 
    gap:1.75rem 
}

.user-auth-form input:focus {
    box-shadow: 0 0 3pt 2pt var(--input-focus-color);
    background-color: var(--input-background);
}

.user-auth-form label{
    font-size: 14px;
    color: var(--font-color);
;
}

.user-auth-title:lang(en) {
    font-size: 48px;
    line-height: 60px;
}

.user-auth-title:lang(ar) {
    font-weight: 600;
}

.user-auth-page-link p {
    color: #B9B8B8;
}

.user-auth-page-link p span {
    color: var(--primary);
    font-weight: bold;
    cursor: pointer;
}

/*End Sign In style */

/* Circle Button Paginator Style */

div.circle-btn {
    border-radius: 16pt;
    width: 32pt;
    height: 32pt;
    display: flex;
    justify-content: center;
    position: relative;
    top: 0;
    align-items: center;
    transition-property: all;
    transition-duration: 0.1s;
    border: solid 1px #ddd;
    box-shadow: 1px 2px 4px #ddd;
}

div.circle-btn:lang(en) {
    margin-left: 6pt;
}

div.circle-btn:lang(ar) {
    margin-right: 6pt;
}

div.circle-btn:visited {
    text-decoration: none;
}

div.circle-btn.enabled {
    cursor: pointer;
    background: white;
    color: var(--primary);
}

div.circle-btn.enabled:hover {
    background: #fafafa;
    text-decoration: none;
}

div.circle-btn.enabled:active {
    top: 2pt;
}

div.circle-btn:not(.enabled) {
    opacity: 0.75;
    color: #ddd;
}

/* End Circle Button Paginator Style */


/* Success Message Style */

.success-msg {
  margin: 10px 0;
  padding: 10px;
  border-radius: 3px 3px 3px 3px;
  color: #270;
  background-color: #DFF2BF;
}

.bounce-enter-active {
    animation: bounce-in .5s;
}
.bounce-leave-active {
    animation: bounce-in .5s reverse;
}
@keyframes bounce-in {
    0% {
      transform: scale(0);
    }
    50% {
      transform: scale(1.5);
    }
    100% {
      transform: scale(1);
    }
}

/* End Success Message Style */
