
.x-search-input {
    font-size: 14px;
    background: white;
}

.x-search-input .input-container {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 24pt;
    padding: 8px;
}

.x-search-input input::placeholder {
    color: #777;
}

.x-search-input i {
    padding: 4px 8px;
    display: flex;
    align-items: center;
}

.x-search-input .icon-search {
    color: #9e9e9e;
}

.x-search-input input {
    background: transparent;
    outline: none;
    border: none;
    width: 100%;
}

.x-search-input .cancel-link {
    color: #616161;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 8px;
}

.x-search-input .btn-close {
    color: #bbb;
    cursor: pointer;
}

.x-search-input .btn-close:hover {
    color: #999;
}

.tippy-box[data-animation=fade][data-state=hidden] {
    opacity: 0
}

[data-tippy-root] {
    max-width: calc(100vw - 10px)
}

a.add-to-cart {
    transition: all 0.4s ease 0s;
    background: #753001;
    color: #fff;
    font-size: 14px;
    text-align: center;
    margin: 0px auto;
    border-radius: 5px;
    position: absolute;
    bottom: -4px;
    right: 0px;
    left: 0px;
    padding: 4px 8px;
    box-shadow: 1px 3px 6px #ccc, -1px -3px 6px #7571715e;
    width: fit-content;
}

a.add-to-cart:hover, .product-panel:hover a.add-to-cart {
    text-decoration: none;
    background: #132f3d;
}

.tippy-box {
    position: relative;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1.4;
    outline: 0;
    transition-property: transform, visibility, opacity
}

.tippy-box[data-placement^=top] > .tippy-arrow {
    bottom: 0
}

.tippy-box[data-placement^=top] > .tippy-arrow:before {
    bottom: -7px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    transform-origin: center top
}

.tippy-box[data-placement^=bottom] > .tippy-arrow {
    top: 0
}

.tippy-box[data-placement^=bottom] > .tippy-arrow:before {
    top: -7px;
    left: 0;
    border-width: 0 8px 8px;
    border-bottom-color: initial;
    transform-origin: center bottom
}

.tippy-box[data-placement^=left] > .tippy-arrow {
    right: 0
}

.tippy-box[data-placement^=left] > .tippy-arrow:before {
    border-width: 8px 0 8px 8px;
    border-left-color: initial;
    right: -7px;
    transform-origin: center left;
}

.tippy-box[data-placement^=right] > .tippy-arrow {
    left: 0
}

.tippy-box[data-placement^=right] > .tippy-arrow:before {
    left: -7px;
    border-width: 8px 8px 8px 0;
    border-right-color: initial;
    transform-origin: center right
}

.tippy-box[data-inertia][data-state=visible] {
    transition-timing-function: cubic-bezier(.54, 1.5, .38, 1.11)
}

.tippy-arrow {
    width: 16px;
    height: 16px;
    color: #333
}

.tippy-arrow:before {
    content: "";
    position: absolute;
    border-color: transparent;
    border-style: solid
}

.tippy-content {
    position: relative;
    padding: 5px 9px;
    z-index: 1
}


.dialog {
    display: none;
    flex-direction: column;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    opacity: 0;
    z-index: 999;
}

.dialog.opened {
    display: flex;
    animation: dialogFadeIn .2s forwards;
}

.dialog .dialog-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .35);
}

.dialog .dialog-body {
    position: relative;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 12pt;
    border-radius: 4pt;
}

@media only screen and (max-width: 600px) {
    .dialog .dialog-body {
        font-size: .85rem;
    }

    body .intro-item-container {
        width: 90% !important;
    }
}

.dialog .dialog-body .dialog-body-title {
    margin-bottom: .75rem;
    font-weight: bold;
    font-size: 1.5rem;
}

.dialog .dialog-body .dialog-body-title span {
    margin-inline-end: .5rem;
}

@media only screen and (max-width: 600px) {
    .dialog .dialog-body .dialog-body-title {
        font-size: 1.125rem;
    }
}

.dialog .dialog-body .dialog-body-content {
    margin-bottom: .5rem;
    color: gray;
    line-height: 1.5em;
}

.dialog .dialog-body .dialog-body-content img {
    display: block;
    max-width: 100%;
    margin: .5rem auto;
}

.dialog .dialog-body .dialog-body-content dl,
.dialog .dialog-body .dialog-body-content ol,
.dialog .dialog-body .dialog-body-content ul {
    padding: 1rem 1.5rem 0 1.5rem;
}

.dialog .dialog-body .dialog-body-content dl li,
.dialog .dialog-body .dialog-body-content ol li,
.dialog .dialog-body .dialog-body-content ul li {
    font-size: .75rem;
    padding-bottom: .25rem;
}

.dialog .dialog-body .dialog-body-action {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dialog .dialog-body .dialog-body-action .btn {
    margin: 0 .5rem;
    min-width: 100px;
}

@media only screen and (max-width: 600px) {
    .dialog .dialog-body .dialog-body-action .btn {
        margin: 0 .35rem;
    }
}

.dialog .dialog-body .dialog-body-action .dialog-body-action-btn:nth-last-child(1) {
    margin-inline-end: 0;
}

.dialog .dialog-body .dialog-body-action .btn.primary {
    background: var(--pink-tone-1);
    color: white;
}

.dialog .dialog-body .dialog-body-action .dialog-body-action-btn:hover {
    opacity: .5;
}

@keyframes dialogFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.dialog .dialog-body .dialog-body-content .text {
    width: 100%;
    padding: 8pt;
    border: none;
    border-radius: 4pt;
    outline: none;
    background: rgb(241, 243, 244);
}

.dialog .dialog-body .dialog-body-content .text-button .btn-inline {
    border: none;
    color: black;
    outline: none;
    cursor: pointer;
    color: #1e88e5;
    background: rgb(241, 243, 244);
}

.dialog .dialog-body .dialog-body-content .text-button .btn-inline:hover {
    color: #1565c0;
}


.custom-field-form {
    user-select: none;
    border-top: solid 1pt #cfd8dc55;
}

.custom-field-form .field p {
    font-weight: 500;
    color: #bbb;
    margin: 12pt 0pt 12pt 12pt;
    text-align: end;
    transition: all 0.1s linear;
}

.custom-field-form.arabic .field p {
    margin: 12pt 12pt 12pt 0pt;
}

.custom-field-form input {
    border: solid 2px #eee;
    border-radius: 8pt;
    height: auto !important;
    padding: 8pt;
    width: 100%;
}

.custom-field-form label {
    margin: 0;
}

.custom-field-form input::placeholder {
    color: #bbb;
}

.custom-field-form .custom-field,
.custom-field-form .custom-field h6:focus {
    outline: none;
}

.custom-field-form .custom-field h6 {
    display: inline-flex;
    padding-inline-end: 12pt;
}

.custom-field-form .custom-option {
    width: 100%;
    display: flex;
    align-items: center;
    border-bottom: solid 1pt rgba(0, 0, 0, 0.05);
}

.custom-field-form .custom-option:hover {
    border-bottom: solid 1pt rgba(0, 0, 0, 0.1);
}

.custom-field-form input[type=radio],
.custom-field-form input[type=checkbox] {
    display: none;
}

.custom-field-form .custom-option label {
    cursor: pointer;
    padding: 8pt;
    display: inline-flex;
    transition: all 0.2s linear;
    align-items: center;
    padding-inline-end: 0 !important;
}

.custom-field-form .custom-option label .radio {
    border: 2px solid #eee;
    border-radius: 100%;
    height: 20px;
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-field-form .custom-option input[type=radio]:checked ~ label .radio {
    border: 2px solid #78909c;
}

.custom-field-form .custom-option input[type=radio] ~ label .radio > .circle {
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 100%;
    transition-duration: 0.2s;
    transition-property: all;
}

.custom-field-form .custom-option input[type=radio]:checked ~ label .radio > .circle {
    width: 10px;
    height: 10px;
    background: #78909c;
}

.custom-field-form .custom-option label .check {
    border: 2px solid #eee;
    border-radius: 2pt;
    height: 20px;
    width: 20px;
    color: white;
    font-weight: 500;
    text-align: center;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-field-form .custom-option input[type=checkbox]:checked ~ label .check {
    background: #78909c;
    border: 2px solid #78909c;
}

.custom-field-form .custom-option input[type=checkbox] ~ label .check img {
    padding: 1pt;
    width: 100%;
}

.custom-field-form .push {
    transition-property: transform;
    transition-duration: 0.2s;
    transform: translateY(0);
}

.custom-field-form .push:active {
    transform: translateY(4pt);
}

.custom-field-form .nobreak {
    white-space: nowrap;
}

.custom-field-form .customize-label {
    display: flex;
    justify-content: center;
    text-transform: uppercase;
    color: #cfd8dc;
    font-size: 1rem;
}

.custom-field-form:not(.arabic) .customize-label {
    letter-spacing: 0.25rem;
}

.custom-field-form {
    padding: 0 8pt 0;
    border-top: solid 1pt #eceff1;
}

.custom-field-form .custom-field .required {
    color: #607d8b;
    display: block;
    font-weight: normal;
    margin-inline-start: 4pt;
}

.custom-field-form div.select-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    padding: 12pt;
    color: #bbb;
    align-items: center;
    pointer-events: none;
    flex-direction: row;
}

.custom-field-form select:not(:focus) {
    border: solid 2px #eee !important;
}

.custom-field-form select {
    width: 100%;
    height: auto !important;
    cursor: pointer;
    padding: 10pt !important;
    appearance: none;
    border-width: 2px !important;
    border-radius: 8pt !important;
    margin-bottom: 12pt !important;
    background-size: 10pt;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' data-prefix='fas' data-icon='angle-down' class='svg-inline--fa fa-angle-down fa-w-10' viewBox='0 0 320 512'%3E%3Cpath fill='%23bbb' d='M143 352L7 216c-9-9-9-24 0-34l23-22c9-10 24-10 34 0l96 96 96-96c10-10 25-10 34 0l23 22c9 10 9 25 0 34L177 352c-9 10-25 10-34 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    -webkit-appearance: none;
}

.custom-field-form:not(.arabic) select {
    background-position: right 12pt center;
}

.custom-field-form.arabic select {
    background-position: left 12pt center;
}

.custom-field-form select.novalue:not(:focus) {
    color: #bbb !important;
}

.custom-field-form .custom-field-title {
    font-weight: 600;
    margin-bottom: 10px;
    white-space: nowrap;
}

.custom-field-form.arabic .custom-field-title {
    font-weight: bold;
}

.custom-field-form .price {
    font-family: 'DM Sans', "Droid Arabic Kufi";
    font-weight: 500;
    color: #e91e63;
    white-space: nowrap;
}

.custom-field-form .form-control {
    height: 56px !important;
    display: flex;
    align-items: center;
}

.custom-field-form .custom-field {
    padding-top: 26pt !important;
}

.custom-field-form .custom-field:last-child {
    padding-bottom: 26pt !important;
}

.custom-field-form .custom-field {
    margin-bottom: 26pt !important;
}

.custom-field-form .custom-field.dropdown .custom-field-title,
.custom-field-form .custom-field.date .custom-field-title,
.custom-field-form .custom-field.text .custom-field-title {
    margin-bottom: 10pt !important;
}





.heading {
    font-size: 6rem;
    backface-visibility: hidden;
    background: -webkit-linear-gradient(#8f6465, #ed6b6e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin: 6rem 0 6rem 0;
  }
  
  .form__radio {
    margin: 0.4rem auto;
  }
  .form__radio-input {
    display: none;
  }
  .form__radio-label {
    /* font-size: 1.6rem; */
    font-weight: 700;
    position: relative;
    padding-right: 30px;
    cursor: pointer;
    margin-bottom: 0px;
    vertical-align: middle;
  }
  .form__radio-button {
    height: 1.5rem;
    width: 1.5rem;
    border: 5px solid #ed6b6e;
    border-radius: 50%;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    vertical-align: middle;
  }
  .form__radio-button::after {
    content: "";
    display: block;
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ed6b6e;
    opacity: 0;
    transition: opacity 0.2s;
  }
  .form__radio-button--square {
    border-radius: 0;
  }
  .form__radio-button--square::after {
    border-radius: 0;
  }
  .form__radio-input:checked ~ .form__radio-label .form__radio-button::after {
    opacity: 1;
  }
  
  .customization-title {
    color: #444;
    font-size: 20px;
    margin: 1rem auto;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.6rem;
}
.flex-center {
    align-items: center;
}


.product-panel .product-image img {
    height: 48pt !important;
    width: 64pt !important;
    border-radius: 4px;
}

.product-panel {
    height: 100%;
    cursor: pointer;
}

.product-panel .product-info {
    height: 100%;
    min-width: 0;
    font-size: 14px;
}

.product-panel .product-info .title {
    white-space: nowrap;
    font-size: 16px;
    color: #333;
    font-weight: bold;
}

.product-panel .product-info .description {
    opacity: 0.75;
    color: #777;
    padding-inline-end: 8pt;
    margin-bottom: 4pt;
}

.product-panel .product-info .description p {
    -webkit-line-clamp: 2;
}

.product-panel .product-info .price {
    color: #111;
    font-size: 12px;
}

.product-panel .product-info .price.discount {
    color: var(--pink-tone-1);
}

.product-panel .product-image {
    height: 100%;
    width: 64pt !important;
    aspect-ratio: 1;
}

.product-panel .product-image img {
    width: 96px;
    height: 96px;
    border-radius: 4px;
}

/* Quantity Selectors */
 .quantity .quantity-selector .label {
    display: flex;
    min-width: 64px;
    justify-content: center;
    font-size: 14px;
    color: #424242;
}
.quantity .adjust-quantity-btn {
    width: 40px;
    margin: 0;
    height: 40px;
    display: flex;
    position: relative;
    border: 2px solid var(--pink-tone-1);
    border-radius: 50%;
    background-color: white;
    align-items: center;
    justify-content: center;
}

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

.quantity .adjust-quantity-btn:hover {
    background-color: var(--pink-tone-1);
    color: white;
}

.quantity .adjust-quantity-btn:hover i {
    color: white;
}

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


/* 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;
}



.line {
    background: rgb(189 189 189 / 25%);
    width: 100%;
    height: 1px;
}
#add-to-card-modal img.item-image {
    max-width: 100%;
    max-height: 200px;
    display: block;
    margin: 1rem auto;
    border-radius: 10px;
    margin-bottom: 2rem;
}
#cart-total-price {
    margin-left: 0.4rem;
    padding-top: 4px;
}

img.intro-logo {
    max-width: 240px;
    display: block;
    margin: 2rem auto;
}

a.intro-item img {
    filter: invert(1);
    width: 100px;
}

a.intro-item {
    background:  var(--bgColor);
    color: #fff;
    padding: 0.8rem;
    border-radius: 5px;
    text-align: center;
    margin: 1rem 2rem;
    box-shadow: 1px 3px 10px #75717166 inset, -1px -3px 10px #75717170 inset;
    transition: all 0.4s ease;
    display: block;
}
a.intro-item:hover {
    background: var(--bgHoverColor);
}
.intro-item h2 {
    font-size: 20px;
    margin-top: 1rem;
}





a:hover {
    text-decoration: none !important;
}

.intro-item-container {
    width: 50%;
}



/* floating menu */

.floating-menu .container {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.floating-menu #toggle {
    -webkit-appearance: none !important;
    display: none;
 
}
.floating-menu .button {
    position: absolute;
    z-index: 999;
    width: 50px;
    height: 50px;
    background: #753001;
    border-radius: 100%;
    cursor: pointer;
    /* display: flex; */
    justify-content: center;
    align-items: center;
    bottom: -16px;
    left: -16px;
    color: #fff;
    text-align: center;
    /* padding-top: 4px; */
    padding-top: 4px;
}

.floating-menu .button i {
    position: relative;
    top: 3px;
    font-size: 13px;
}
.floating-menu .button span {
    font-size: 10px;
    /* transform: translateY(-18px); */
    position: relative;
    top: -8px;
    display: block;
    margin-top: 0rem;
}

.floating-menu .button i {
    font-size: 12px;
}
.floating-menu .button:before {
    position: absolute;
    /* content: ""; */
    width: 20px;
    height: 2px;
    background: #fff;
    transform: rotate(90deg);
    transition: all 0.4s ease;
}
.floating-menu .button:after {
    position: absolute;
    /* content: ""; */
    width: 20px;
    height: 2px;
    background: #fff;
    transition: all 0.4s ease;
}
.floating-menu .nav {
    opacity: 0;
    transition: all 0.4s ease-in-out;
    background: #fff;
    width: 100%;
    border-radius: 5px;
    transform: translateY(-10%);
    box-shadow: 2px 3px 10px 0 rgba(81, 81, 81, 0.1);
    border: 1px solid #e4e4e4;
    padding: 10px;
    /* visibility: hidden;
     */
     height: 0px;
     overflow: hidden;
}
.floating-menu .nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.floating-menu .nav a {
    text-align: center;
    margin: 4px 16px;
    color: #753001;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-size: 14px;
    padding: 4px 16px;
    border-radius: 8px;
}
.floating-menu .nav a:hover {
    color: #c784dd;
}
.floating-menu #toggle:checked ~ .nav {
    opacity: 1;
    transform: translateY(0%);
    visibility: visible;
    height: auto;
    
}
.floating-menu #toggle:checked ~ .button:before {
    /* transform: rotate(225deg); */
}
.floating-menu #toggle:checked ~ .button:after {
    /* transform: rotate(135deg); */
}
@media (max-width: 640px) {
    .floating-menu .container {
        width: 100%;
   }
}
.floating-menu {
    position: fixed;
    z-index: 9;
    left: 32px;
    bottom: 32px;
    transition: all 0.3s ease-in-out 0s;
}

.floating-menu.moved-up{
    bottom: 100px;
}

/* end floating menu */



.checkout.layover {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1000;
    height: 0px;
    overflow: hidden;
    transition: height 0s ease 0s , opacity 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
    overflow: auto;
    padding-bottom: 2em;
}
.checkout.layover.active{
    height: 100%;
    visibility: visible;
    opacity: 1;
}

/* .col-md-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%
} */


.menu-cats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.5rem;
    text-align: center;
    align-items: stretch;
    width: 100%;
    padding-top: .5rem;
    /* background: #f9f9f9; */
    /* padding-bottom: 1rem; */
    margin: 1rem;
}

.menu-cats .cat-item {
    /* padding: 16px; */
    width: 100%;
    /* padding: 12px 8px; */
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    aspect-ratio: 1/.75;
    position: relative;
    overflow: hidden;
}

.menu-cats .cat-item:before{content:"";position: absolute;z-index: 1;background: #11111185;width: 100%;height: 100%;left: 0px;top: 0px;backdrop-filter: blur(1px);}

.menu-cats .cat-item a{
    position:relative;
    width: 100%;
    height: 100%;
    display: block;
}

.menu-cats .cat-item img {
    width: 32px;
    margin-bottom: .5rem;
    margin-inline: auto;
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-cats .cat-item h3 {
    font-size: 13px;
    color: #fff;
    position: absolute;
    z-index: 10;
    left: 0px;
    width: 100%;
    text-align: center;
    bottom: 6px;
}



img.home-slider-img {
    max-height: 600px;
    margin: 0px auto;
  }
  
  .home-slider .splide__slide {
    text-align: center;
  }
  
  .home-slider a.slide-action {
    display: block;
    background: #1e75a2;
    color: #fff;
    max-width: 200px;
    margin: 1rem auto;
    padding: 8px 16px;
    border-radius: 8px;
  }
  
  .splide__pagination__page.is-active {
    background: #333;
  }img.home-slider-img {
    max-height: 100%;
    max-width: 100%;
    aspect-ratio: 3/1;
    object-fit: cover;
    object-position: center;
    border-radius: 16px;
}

.home-slider {}

.home-slider {
    margin: 2rem 5%;
    padding: 0px !important;
    /* overflow: hidden !important; */
    
  
}

.splide__pagination__page.is-active {
    background: #753001 !important;;
}

button.splide__pagination__page {}

body .splide__arrow svg {
    fill:#738fa0 !important;
    width: 1.5em !important;
  
}



.splide__pagination__page {

    width:7px !important;
    height:7px !important;
    border-radius:50% !important;
}


.description.truncate p {
    margin-bottom: .0px;
}

.product-panel .product-info .description p {
    font-size: 12px;
    margin-top: .5rem;
}


.product-panel .product-info {
    align-items: flex-start;
}

.product-panel .product-info .description img {
    width: 16px;
}

.product-panel .product-info .description .calories {
    margin-right: 1rem;
    color: #222;
    font-size: 12px;
}


div.preloader {
    position: fixed;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background: #ffffffc7;
}

#tout:first-child div {
    display: block;
    width: 100px;
    height: 100px;
    border: 3px solid #753001;
    border-radius: 50%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#tout:first-child>div>div {
    width: 90px;
    height: 90px;
    border: 5px solid #fff;
    border-radius: 50%;
    margin: auto;
    overflow: hidden;
}

#tout:first-child div div div {
    width: 110px;
    height: 110px;
    margin: auto;
    top: 360px;
    background-color: #753001;
    border-radius: 0%;
    border: none;
    animation-name: anim, color;
    animation-duration: 3s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes anim {

    100% {
        top: 0
    }
}

.product-panel .product-info .description span , .product-panel .product-info .description span * {
    display: inline-block;
    justify-content: center;
    align-items: center;
    vertical-align: middle;
}


.quantity-controls {
    position: absolute;
    display: flex;
    width: 110%;
    bottom: -3px;
    background: #753001;
    /* opacity: .5; */
    right: -5%;
    color: white;
    overflow: hidden;
    border-radius: 4px;
    /* transform: translateX(-50%); */
    flex-wrap: nowrap;
    /* border: 1px solid #ddd; */
}

.quantity-controls input, .quantity-controls button {
    padding: 2px 6px;
    text-align: center;
    flex-grow: 1;
    flex: 1 1 33%;
    width: 21px;
}

input.quantity-display {
    color: #555 !important;
    font-size: 12px;
    width: 32px;
    text-align: center;
    border: 1px solid #ddd;
    border-right: 0px;
    border-left: 0px;
}

.splide__arrows--rtl button {
    background: #333;
    border-radius: 50%;
}

section.main-icons-container {
    background: #f4f4f4;
    padding: 12px 16px;
}

section.main-icons-container > a {
    display: block;
    font-size: 9px;
    text-align: center;
}

section.main-icons-container > a i {
    display: block;
    margin: 0px auto;
    line-height: 10px;
    font-size: 16px;
}

a {
    color: #753001;
}

section.main-icons-container .main-icons-social-links  a {
    font-size: 17px !important;
    /* border: 1px dashed #ccc; */
    padding: 6px;
    border-radius: 50%;
    line-height: 10px;
 
}

section.main-icons-container .main-icons-social-links i {
    position: relative;
    /* top: 2px; */
}



button.checkout-floater .riyal-icon {
    color: #fff;
    fill: #fff;
    width: 16px;
    /* height: 64px !important; */
}

.item-nut-info .riyal-icon {
    width: 14px;
    fill: #009688;
}