<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&amp;display=swap");
@import url("https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&amp;display=swap");

@font-face {
  font-family: "MervaleScriptR";
  src: url(../fonts/MervaleScript-Regular.otf);
}

@font-face {
  font-family: "BebasNeueR";
  src: url(../fonts/BebasNeue-Regular.ttf);
}

@font-face {
  font-family: "MasterPlane";
  src: url(../fonts/MASTERPLAN___.ttf);
}

@font-face {
  font-family: "InterM";
  src: url(../fonts/Inter_24pt-Medium.ttf);
}

@font-face {
  font-family: PoppinsM;
  src: url(../fonts/Poppins-Medium.ttf);
}

@font-face {
  font-family: PoppinsSB;
  src: url(../fonts/Poppins-SemiBold.ttf);
}

@font-face {
  font-family: PoppinsB;
  src: url(../fonts/Poppins-Bold.ttf);
}

@font-face {
  font-family: FuturaMDBT;
  src: url(../fonts/FuturaMediumBT.ttf);
}

@font-face {
  font-family: PopfineIT;
  src: url(../fonts/POPFINE\ Italic.ttf);
}

@font-face {
  font-family: UnicaOneR;
  src: url(../fonts/UnicaOne-Regular.ttf);
}

@font-face {
  font-family: ITCKabel;
  src: url(../fonts/itckabelstd-bold.otf);
}

@font-face {
  font-family: knockOut;
  src: url(../fonts/Knockout-Light.otf);
}

@font-face {
  font-family: hwt-artz;
  src: url(../fonts/HWT-Artz.ttf);
}

@font-face {
  font-family: knockOut-Light-Weight;
  src: url(../webfonts/knockout-htf49-liteweight_bigfontsite.com.ttf);
}

@keyframes pulse {
  0% {
    transform: translateY(20px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes mymove {
  0% {
    top: 200px;
  }

  50% {
    top: 300px;
  }

  100% {
    top: 300px;
  }
}

:root {
  --white: #ffffff;
  --black: #000000;
  --primaryColor: #cb4829;
  --secondaryColor: #cb4829;
  --fadePink: rgba(250, 0, 67, 0.25);
  --fadeBlack: rgba(0, 0, 0, 0.7);
  --fadeGreen: rgba(206, 255, 223, 0.4);
  --fadeWhite: rgba(255, 255, 255, 0.5);
  --fadeBlue: rgba(45, 67, 85, 0.8);
  --darkGray: #696868;
  --darkBlue: #000;
  --fullDarkBlue: #1e2b36;
  --lightGray: #ebeaea;
  --mediumGray: #eeeeee;
  --mediumFadeGray: #efeeee;
  --lightPink: #ffeef2;
  --orange: #ff9900;
  --darkblueMix: #cb4829;
  --royaleBlue: #cb4829;
  --fbColor: #cb4829;
  --instaColor: #e8564a;
  --youtubeColor: #ff0000;
  --twitterColor: #cb4829;
  --skinColor: #f8e6cc;
  --offerGray: #414141;
  --skyBlue: #aee0fa;
  --purple: #ae76e6;
  --seaGreen: #c4f7e0;
  --lightgreen: #cb4829;
  --green: #3ad900;
  --navydarkblue: #27305a;
  --lightCustomGrey: #e8e8e8;
  --darkGreen: #179600;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

/* Track */

::-webkit-scrollbar-track {
  background: var(--white);
}

/* Handle */

::-webkit-scrollbar-thumb {
  background: var(--darkBlue);
}

/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
  background: var(--darkBlue);
}

::-moz-selection {
  /* Code for Firefox */
  color: var(--white);
  background: var(--primaryColor);
}

::selection {
  color: var(--white);
  background: var(--primaryColor);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--white) !important;
  /*! background-color: white !important; */
}

.hideOverFlow {
  overflow: hidden !important;
}

ul {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

.form-control {
  color: var(--black) !important;
  background: none !important;
}

input.form-control::placeholder {
  color: #777 !important;
}

.form-control:hover,
.form-control:focus {
  border-color: transparent !important;
  outline: 0 !important;
  background-color: var(--white) !important;
  box-shadow: 0 0 0 0.12rem var(--lightCustomGrey) !important;
  color: var(--black);
}

.btn {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
}

section {
  display: block;
}

.mainWrapper {
  position: relative;
  overflow: hidden;
}

.mainContentContainer {
  position: relative;
  z-index: 55;
  background: var(--white);
  min-height: 100vh;
  transition: all linear 0.5s;
}

.activeMenuSideBar {
  transform: translate(31%, 100px);
  border-radius: 20px;
  box-shadow: -3px -7px 14px 3px rgb(0 0 0 / 5%);
}

.aciveOverlay {
  position: relative;
  transition: opacity linear 0.3s;
}

.mainWrapper.aciveOverlay::before {
  content: "";
  background: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.noScroll {
  overflow: hidden !important;
}

/* side bar code start  */

.sideBarContainer {
  background: var(--white);
  width: 30%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  border: var(--fadeWhite);
  padding: 1rem 0.5rem;
  top: 0;
  z-index: 2;
}

.sideBarContainer .logoBar {
  width: 100%;
  display: flex;
  align-items: center;
}

.sideBarLogo {
  display: flex;
  flex: 1;
}

.sideBarLogo img {
  width: 20vw;
  margin: 1vw 0px 0px 1.2vw;
}

button.closeBtn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

a.closeBtn img {
  width: 95%;
}

.logoutButtonContainer {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  margin: 1rem 0;
}

.logoutButtonContainer button.btn.logOutButton {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--darkBlue);
}

.logoutButtonContainer button.btn.logOutButton:hover {
  color: var(--primaryColor);
}

button.btn.logOutButton span img {
  width: 25px;
}

ul.subMenu {
  position: relative;
  padding-left: 1rem;
}

ul.menuItems {
  padding-left: 0.5rem;
}

ul.menuItems li {
  margin-bottom: 1rem;
}

ul.menuItems li a {
  color: var(--darkBlue);
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
}

ul.menuItems li a:hover {
  color: var(--primaryColor);
}

ul.subMenu {
  transition: all linear 0.5s;
  height: 0;
  overflow: hidden;
}

ul.subMenu.activeMenu {
  height: max-content;
  margin: 1rem auto;
}

ul.subMenu li a {
  font-size: 1rem;
  font-weight: 500;
}

ul.menuItems li a span {
  margin: 0 0.5rem;
}

ul.menuItems li a span.caratSign img {
  width: 1rem;
}

.mobileCommandBtn {
  text-align: center;
}

.mobileCommandBtn ul {
  padding: 0 !important;
  margin: 1rem auto !important;
  display: none;
}

.mobileCommandBtn ul a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  margin: 0.5rem auto;
  background: var(--primaryColor);
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  border-radius: 50px;
  transition: all linear 0.3s;
}

.mobileCommandBtn ul a:hover {
  background: var(--darkBlue);
}

/* side bar code end  */

/* header code start  */

.headerContainer {
  position: relative;
  z-index: 55555;
}

.mainNav {
  background: var(--white);
  padding: 1.8vw 1.667vw;
  display: block;
  box-shadow: 0px 3px 3px 2px rgb(155 155 155 / 16%);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

.navRow {
  display: flex;
  align-items: center;
}

.centerNavLink {
  flex: 1;
}

.centerNavLink ul {
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.brandContainer {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  /* top: -3.333vw; */
}

.centerNavLink ul li a {
  margin: 0 18px;
  cursor: pointer;
}

nav.mainNav a {
  font-size: 1.417vw;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--darkBlue);
  transition: all linear 0.3s;
  position: relative;
  font-family: "InterM";
  letter-spacing: 0.05vw;
}

nav.mainNav a.entryBtn img {
  width: 2vw;
}

nav.mainNav a:hover {
  color: var(--primaryColor);
}

.centerNavLink ul li {
  position: relative;
}

.centerNavLink ul li:first-child::before {
  content: "";
  position: absolute;
  width: 4px;
  height: 55%;
  background: var(--darkBlue);
  right: -2px;
  top: 50%;
  transform: translateY(-57%);
}

.rightNavItems {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

a.navTel {
  position: relative;
}

a.navTel img {
  width: 30px;
  filter: brightness(0) saturate(100%) invert(0%) sepia(2%) saturate(3364%) hue-rotate(248deg) brightness(84%) contrast(99%);
}

a.navTel span {
  position: absolute;
  left: -38px;
  top: 45%;
  transform: translateY(-50%);
  z-index: 2;
}

a.navTel {
  /* color: var(--primaryColor) !important; */
}

button.btn.cartBtn {
  position: relative;
  margin: 0;
  padding: 0;
}

ul.navSideIcons {
  display: flex;
  margin: 0 0 0 60px !important;
  padding: 0;
  gap: .5vw;
  align-items: center;
}

button.btn.cartBtn span.cartIcon svg {
  width: 35px;
}

button.btn.cartBtn span.cartCounterIcon {
  position: absolute;
  top: -0.885vw;
  left: 1.146vw;
}

button.btn.cartBtn span.cartCounterIcon svg {
  width: 0.885vw;
}

button.btn.cartBtn span.cartCounterIcon svg path {
  fill: var(--primaryColor);
}

button.btn.cartBtn span.cartCounterIcon span.cartCounter {
  position: absolute;
  font-size: 0.625vw;
  left: 50%;
  top: calc(45% - 0px);
  transform: translate(-50%, -50%);
}

.brandContainer {
  display: flex;
  justify-content: center;
}

.brandContainer a {
  display: flex;
  justify-content: center;
  width: fit-content;
  position: unset !important;
}

img.logoImg {
  width: 20vw;
  transition: width 0.2s ease-in-out;
}

a.userIcon svg {
  width: 26px;
}

a.userIcon2 svg {
  width: 26px;
}

ul.navSideIcons li {
  display: flex;
  position: relative;
  margin: 0 2px;
}

.hamBurgerIcon {
  position: relative;
}

button.btn.HumBurgerBtn {
  padding: 0 !important;
  margin: 0 !important;
}

.hamBurgerIcon button#menuBtn span {
  width: 1.042vw;
  height: 0.26vw;
  background: var(--black);
  display: block;
  border-radius: 2px;
}

.hamBurgerIcon button#menuBtn span:nth-child(2) {
  margin: 0.35vw 0;
  width: 1.823vw;
  height: 0.313vw;
}

button.btn.HumBurgerBtn:hover span {
  background: var(--primaryColor) !important;
}

nav.mainNav button:hover svg path,
nav.mainNav a:hover svg path {
  fill: var(--primaryColor) !important;
}

/* cart drawer css code start  */

.cartDrawerContainer {
  box-shadow: 0px 0px 5px 4px rgb(155 155 155 / 26%);
  width: 660px;
  background: #fff;
  overflow: hidden;
  border-radius: 20px;
  /*! border: #0000006e 1px groove; */
  position: fixed;
  top: 41px;
  right: 28px;
  transition: all linear 0.3s;
  z-index: 55;
  transform: translateY(-150%);
}

.cartDrawerContainer.activeDrawer {
  transform: translateY(7%) !important;
}

.drawerInnerContainer {
  padding: 1rem 1rem 5rem 2rem;
  height: 75vh;
  overflow-x: hidden;
  overflow-y: scroll;
}

.cartTitleAndCloseBtn {
  background: var(--white);
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem;
}

.cartTitleAndCloseBtn h3 {
  margin: 0;
  color: var(--darkBlue);
  display: flex;
  flex: 1;
}

/* catrt drawer code end  */

/* sticky tranparent header code start  */

nav.mainNav.stickyHeader {
  background: transparent;
  box-shadow: none !important;
}

nav.mainNav.stickyHeader button.btn.HumBurgerBtn span {
  background: var(--white) !important;
}

nav.mainNav.stickyHeader a.userIcon svg path {
  fill: var(--white);
}

nav.mainNav.stickyHeader a.userIcon2 svg path {
  fill: var(--white);
}

nav.mainNav.stickyHeader button.btn.cartBtn span.cartIcon svg path {
  fill: var(--white);
}

nav.mainNav.stickyHeader button.btn.cartBtn span.cartCounter {
  color: var(--white);
}

nav.mainNav.stickyHeader .centerNavLink ul li a,
nav.mainNav.stickyHeader a.navTel {
  font-size: 0;
}

nav.mainNav.stickyHeader .centerNavLink ul li:first-child::before {
  opacity: 0;
}

nav.mainNav.stickyHeader a.navTel img {
  width: 0 !important;
}

span.stickyHeaderLogo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 55;
}

span.stickyHeaderLogo.hideStickyLogo {
  opacity: 0;
}

/* sticky transparent code end  */

/* header code end  */

/* cart page code start  */

.cartItemsContainer {
  position: relative;
  width: 100%;
}

.cartItemRow {
  margin: 1.5rem 0;
  position: relative;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  box-shadow: 0px 0px 6px 6px rgb(0 0 0 / 7%);
  padding: 0.5rem;
}

.cartItemRoww {
  margin: 1.5rem 0;
  position: relative;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  box-shadow: 0px 0px 6px 6px rgb(0 0 0 / 7%);
  padding: 1.5rem;
}

.cartDrawerContainer .cartItemRow {
  width: 97%;
  float: right;
}

.cartDrawerContainer .prodCartImg {
  left: -50px;
}

img.img-fluid.prodCartImg {
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
  position: relative;
  top: 0px;
}

.cartProdDetail {
  position: relative;
  width: 100%;
}

.cartItemNameAndPrice {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  margin: 0.5rem 0;
}

.cartItemNameAndPrice h2.cartItemName {
  flex: 1;
  margin: 0;
  color: var(--darkBlue);
  font-size: 18px;
  width: 100%;
  font-weight: 600;
}

.cartItemNameAndPrice h3.cartItemPrice {
  font-size: 18px;
  color: var(--navydarkblue);
  font-weight: 600;
  margin: 0;
}

p.caertItemExtraDetail,
p.cartItemDetail {
  font-size: 1rem;
  color: var(--darkBlue);
  margin: 0;
}

.cartItemDetail {
  font-size: 10px;
}

span.DetailBold {
  color: var(--darkBlue);
  font-weight: 600;
}

.cartItemIncDec {
  margin: 0.5rem 0;
}

.quantSelContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.quantSelContainer input {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: none !important;
  font-size: 15px !important;
  font-weight: 600;
}

#accp177 input {
  order: 4;

}

.quantSelContainer input:focus {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.quantSelContainer span {
  cursor: pointer;
}

.quantSelContainer span.minus svg {
  width: 22px;
}

.quantSelContainer span.plus svg {
  width: 25px;
  position: relative;
  top: 1px;
}

.yourChoiceContainer,
.promoCodeContainer {
  width: 100%;
  background-color: white;
  margin: 1rem 0;
}

.shadowBoxx {
  box-shadow: 0px 0px 6px 6px rgb(0 0 0 / 7%);
  padding: 10px;
  border-radius: 11px;
  margin: 10px 0px 30px 0px;
}

.input-group {
  position: relative;
  display: flex;
  /* background: blue; */
  flex-wrap: wrap;
  /* border: 1px solid black; */
  align-items: stretch;
  margin: 10px 0px;

  padding: 10px;
  box-shadow: 0px 0px 6px 6px rgb(0 0 0 / 7%);
  border-radius: 6px;
  width: 100%;
}

.input-groupp {
  position: relative;
  display: flex;
  /* background: blue; */
  flex-wrap: wrap;
  /* border: 1px solid black; */
  align-items: stretch;
  margin: 10px 0px;
  padding: 10px;
  border-radius: 6px;
  width: 100%;
}

.yourChoiceContainer input.form-control,
.promoCodeContainer input.form-control {
  background: var(--lightGray) !important;
  border: 1px solid var(--lightGray) !important;
  padding: 0.8rem !important;
  font-size: 1rem !important;
  color: var(--darkBlue);
  border-radius: 10px !important;
  width: calc(85% - 5px) !important;
}

button.btn.inputSubmittBtn {
  background: var(--primaryColor) !important;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  width: 15%;
  border-radius: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px !important;
}

button.btn.inputSubmittBtn:hover {
  background: var(--darkBlue) !important;
}

.offerOrderAndDiscountArea {
  margin: 0.5rem 1rem;
  width: 100%;
}

.offerOrderAndDiscountArea h2.offerCartHeading {
  color: var(--darkBlue);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.discountInfo {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}

.discountInfo span {
  margin-right: 5px;
  position: relative;
  top: -1px;
}

.discountInfo span svg {
  width: 20px;
}

.discountInfo span svg path {
  fill: var(--darkBlue);
}

.discountInfo p {
  color: var(--darkBlue);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

.cartTotal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1rem 0;
}

.cartTotal h3.totalMoney {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--darkBlue);
  font-size: 1.6rem;
}

.cartTotal h3.totalMoney span {
  color: var(--primaryColor);
  margin-left: 1.2rem;
}

.formActionBtn,
.validateOrderContainer {
  width: 100%;
  margin: 0.5rem 0;
  text-align: center;
}

.validateBtn {
  position: relative;
  z-index: 5;
  padding: 0 0.5rem;
  color: white;
}

a.btn.normalBtn,
a.btn.normalBtn:hover,
.formActionBtn button.btn.validateBtn {
  background: var(--darkBlue) !important;
  color: var(--white) !important;
}

a.btn.normalBtn,
button.btn.validateBtn {
  width: 30.1vw;
  /* text-align: center; */
  /* margin: 0px auto; */
  margin: 20px 53px 20px 89px;
  background: var(--primaryColor) !important;
  color: var(--white);
  padding: 0.8rem 0;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  border: 1px solid var(--primaryColor) !important;
}

button.btn.validateBtn:hover {
  background: var(--darkBlue) !important;
}

.formActionBtn button.btn.validateBtn:hover {
  background: var(--primaryColor) !important;
}

span.CartIconAndPrice {
  display: flex;
  align-items: center;
  margin-left: 11px;
}

span.CartIconAndPrice span.cartBtnIcon {
  margin-left: 3px;
  position: relative;
  margin-right: 12px;
}

span.CartIconAndPrice span.cartBtnIcon img {
  width: 35px;
  filter: invert(100%);
}

span.CartIconAndPrice span.cartBtnIcon img:hover {
  width: 35px;
}

span.CartIconAndPrice span.cartBtnIcon::before {
  content: "";
  background: var(--white);
  width: 2px;
  height: 100%;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  right: -10px;
}

span.TotalCartItemsAndPrice {
  font-size: 13px;
  margin-left: 6px;
  font-weight: 500;
  text-align: left;
}

.validateBtnPrimary button.btn.validateBtn {
  font-size: 1rem;
}

.validateBtnPrimary button.btn.validateBtn .row {
  display: flex;
  align-items: center;
}

span.priceBold {
  font-size: 19px;
  font-weight: 600;
}

/* cart page css end */

/* hero area code start  */

.heroContainer {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--black);
}

.sliderContainer {
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

.slideItem {
  position: relative;
  overflow: hidden;
}

.slideImg {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slideImg img {
  width: 100%;
  object-fit: cover;
  height: 100vh;
  object-position: center;
}

.slideImg::before {
  content: "";
  background: var(--black);
  height: 98%;
  width: 98%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.6;
}

.slideTextContainer {
  position: absolute;
  top: 50%;
  width: 60%;
  left: 3%;
  transform: translateY(-50%);
  z-index: 3;
}

.slideTextContainer h1 {
  font-family: "Passion One", cursive;
  font-weight: 700;
  font-size: 15vh;
  line-height: 16.3vh;
  opacity: 0;
  transform: translate(0px, 0px) rotate(0deg) skewX(-6deg);
  color: var(--white);
  transition: all linear 1 s;
}

.slideTextContainer h1 span {
  font-size: 20vh;
  color: var(--primaryColor);
}

.slideTextContainer h1 span.outlineLetter {
  color: transparent;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: var(--white);
}

.centerTxtElement {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  opacity: 0;
  transition: all linear 0.8s;
}

.centerTxtElement span {
  font-size: 145vh;
  color: transparent;
  -webkit-text-stroke-width: 5px;
  -webkit-text-stroke-color: var(--primaryColor);
  transition: all linear 0.3s;
}

.centerTxtElement span.fillLetter {
  color: var(--primaryColor);
}

.heroMenuBtnContainer {
  position: relative;
  z-index: 7;
  display: flex;
  margin-left: 70px;
}

.heroMenuBtnContainer a {
  color: var(--white);
  font-family: "Passion One", cursive;
  font-size: 1.5rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 1rem 10rem 1rem 1.5rem;
  width: max-content;
  border: 10px solid var(--fadeWhite);
  position: relative;
  border-radius: 50px;
}

.heroMenuBtnContainer a span svg {
  width: 55px;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}

.heroMenuBtnContainer a span svg path.st0 {
  fill: var(--white);
}

.heroMenuBtnContainer a span svg path.st1 {
  fill: var(--primaryColor);
}

.heroSocialsIcons {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--fadeBlack);
  border-radius: 10px 0 0 10px;
  padding: 1rem;
  z-index: 10;
}

.heroSocialsIcons ul {
  padding: 0 !important;
  margin: 0 !important;
  text-align: center;
}

.heroSocialsIcons ul a {
  color: var(--primaryColor);
  transition: all linear 0.3s;
  font-size: 1.5rem;
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heroSocialsIcons ul a:hover {
  color: var(--white);
}

.owl-item.active .centerTxtElement {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.owl-item.active .slideTextContainer h1 {
  opacity: 1;
  animation: skewAnim 2s;
}

@keyframes skewAnim {
  0% {
    transform: skewX(10deg);
  }

  50% {
    transform: skewX(5deg);
  }

  100% {
    transform: skewX(-6deg);
  }
}

.sliderBtnNProgressContainer {
  position: absolute;
  bottom: 10%;
  z-index: 555;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  width: 80%;
  right: 45px;
}

.sliderProgressContainer {
  width: 100%;
  height: max-content;
  flex: 1;
  display: flex;
}

.sliderProgressContainer .prgoressBar {
  width: 100%;
  background: var(--fadeWhite);
  height: 8px;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.sliderProgressContainer .prgoressBar::before {
  content: "";
  background: var(--white);
  width: 0;
  height: 100%;
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  animation: progress 15s infinite;
}

@keyframes progress {
  0% {
    width: 0;
  }

  50% {
    width: 50%;
  }

  100% {
    width: 100%;
  }
}

button.mvToBtm {
  width: 40px;
  height: 60px;
  position: absolute;
  bottom: 12px;
  left: 50%;
  border: 3px solid var(--white);
  border-radius: 50px;
  z-index: 6;
  background: none !important;
  box-shadow: none !important;
  transition: all linear 0.3s;
  overflow: hidden;
  transform: translateX(-50%);
}

button.mvToBtm span {
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 100%;
  position: absolute;
  top: 25%;
  left: calc(50% - 5px);
  animation: 2s infinite bounce;
}

/* hero area code end  */

/* home page categories start  */

.mainCategories {
  position: relative;
  margin-top: 93px !important;
  text-align: center;
}

/*index.html page class*/
.mainCategoriess {
  position: relative;
  margin-top: -200px !important;
  text-align: center;
}

h2.secSubTitlte {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--darkBlue);
}

h1.secTitlte {
  font-size: 2.2rem;
  margin: 0;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--primaryColor);
}

.categoryBox {
  width: 100%;
  background: var(--white);
  box-shadow: 0px 0px 3px 4px rgb(155 155 155 / 16%);
  margin: 1rem 0;
  transform: scale(0.9);
  top: 0;
  position: relative;
  transition: all linear 0.3s;
  padding: 2rem 0px;
}

.categoryBox a {
  /* display: block;
  padding: 2rem;*/
}

.catProdImg {
  width: 95%;
  margin: 1rem auto;
  transform: rotate(0deg);
  transition: all linear 0.3s;
}

.categoryBox:hover .catProdImg {
  transform: rotate(20deg);
}

h3.catTitle {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--darkBlue);
  margin-top: 2rem;
}

.categoryBox:hover {
  top: -20px;
  transform: scale(1);
  box-shadow: 0px 0px 3px 4px rgb(155 155 155 / 20%);
}

/* home page categories end  */

/* footer code start */

footer.footer {
  display: block;
  width: 100%;
  color: var(--white);
  background: var(--black);
  z-index: 1;
  position: relative;
}

footer.footer .leftText {
  text-align: right;
}

footer.footer .leftText h2 {
  text-align: center !important;
  font-family: "BebasNeueR";
  color: var(--primaryColor);
  font-size: 3rem !important;
  margin: 0px 0px 0.6rem 0px !important;
}

footer.footer .rightText {
  text-align: left;
}

.last-third-section {
  /* border-bottom: 1px solid #ddb5fd; */
  padding: 5.5rem 0rem 2rem 0rem;
}

.second-last {
  padding: 3rem 0px;
}

.footerDetailArea {
  padding: 5rem 0;
  color: var(--white);
}

.footer .footer {
  background-color: var(--white);
  padding: 20px 0;
}

.footer .footer p {
  margin: 0px;
  /* padding: 1.5rem; */
  font-size: 1.4rem !important;
  font-family: "PoppinsM";
  color: var(--black);
}

.footer .footer p a {
  color: var(--black);
  font-family: "PoppinsB";
}

.footer .footer p .beb {
  font-family: "BarlowEB";
  text-transform: uppercase;
}

.footer .footer p .bsb {
  font-family: "BarlowSB";
}

.footer h2 {
  text-align: center !important;
  font-family: "BebasNeueR";
  color: var(--primaryColor);
  font-size: 3rem !important;
  margin: 0px 0px 0.6rem 0px !important;
  text-wrap: nowrap;
}

.footer p {
  margin: 0px;
  font-family: "BebasNeueR";
  text-align: center;
  font-size: 1.15vw !important;
  letter-spacing: 0.13vw;
  line-height: 1.6vw;
}

.footer p a {
  color: var(--primaryColor);
  margin: 0px 0.4rem;
}

.footer p a img {
  width: 2.6rem;
}

.footer p.bottomTxt {
  letter-spacing: 0px !important;
  line-height: unset !important;
}

.footer .rightText h2 {
  text-align: center;
}

.footer .rightText h2 span {
  left: 13rem;
  top: -0.3rem;
}

.searchBarContainer p {
  font-size: 1.3vw !important;
  margin: 0px 2vw !important;
}

.newsletter-Txt {
  display: flex;
  align-items: center;
}

.newsletter-Txt,
.last-second-dsiplay {
  width: fit-content;
}

.newsletter-Txt h2 {
  margin: 0px;
  text-align: center;
  font-size: 3.2rem !important;
}

.last-second-dsiplay {
  background-color: var(--white);
  border-radius: 50px;
  padding: 0px 0px 0px 1.3rem;
}

.last-second-dsiplay input {
  border: none;
  outline: none;
  margin-right: 0.8rem;
  background: transparent;
}

.last-second-dsiplay .btn {
  background-color: var(--black) !important;
  /* text-transform: uppercase; */
  border-radius: 50px;
  font-family: "ITCKabel";
  font-size: 1.5rem;
  padding: 0.2rem 1.2rem;
}

.storeIcons {
  display: flex;
  align-items: center;
}

.storeIcons a {
  margin: 0 0.5rem;
}

.storeIcons a img {
  max-width: 100%;
}

.ftTxtContainer h2 {
  font-size: 1.8rem;
  color: var(--white);
}

.ftTxtContainer p {
  font-size: 1rem;
  color: var(--white);
}

.ftBotttomRow {
  background: var(--fullDarkBlue);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.5rem 0;
}

.bottomRowItemsList {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.bottomRowItemsList span {
  font-size: 1.2rem;
  color: var(--white);
}

.bottomRowItemsList span a {
  color: var(--white);
}

.bottomRowItemsList span a:hover {
  color: var(--primaryColor);
}

ul.ft-socials {
  display: flex;
  margin: 0 !important;
  padding: 0 !important;
  justify-content: center;
}

ul.ft-socials img {
  width: 50px;
}

ul.ft-socials a {
  transition: all linear 0.3s;
  margin: 0 0.5rem;
  position: relative;
  top: 0;
}

ul.ft-socials a:hover {
  top: -5px;
}

.leftBtmRowItm {
  display: flex;
  flex: 1;
  justify-content: flex-start;
}

.centerBtmRowItem {
  display: flex;
  flex: 1;
  justify-content: center;
}

.rightBtmRowItm {
  display: flex;
  flex: 1;
  justify-content: flex-end;
}

/* footer code end  */

/* link pages code start  */

.linkPageContainer {
  position: relative;
  padding: 9rem 0 5rem 0;
  min-height: 100vh;
}

.cartPageContainer {
  /* padding-top: 5rem; */
}

.modelInerBox {
  margin: 3rem 0;
}

.modelContainer {
  margin: 2rem 0;
  position: relative;
}

h2.modelHeading {
  font-size: 2rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primaryColor);
}

.modelBtnsContainer ul {
  display: flex;
  padding: 0 !important;
  align-items: center;
}

.btnItem {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btnItem a {
  color: var(--darkBlue);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.5rem 1rem;
  background: var(--white);
  font-size: 1.2rem;
  margin: 1rem 1rem 1rem 0;
  box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 18%);
  border-radius: 10px;
  font-weight: 600;
  transition: all linear 0.3s;
  width: max-content;
}

.menuListeBtns .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
}

.menuListeBtns .owl-dots button.owl-dot span {
  width: 35px;
  height: 5px;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 0;
  background: var(--darkBlue);
}

.menuListeBtns .owl-dots button.owl-dot span:hover,
.menuListeBtns .owl-dots button.owl-dot.active span {
  background: var(--primaryColor);
}

.btnItem.activeMenuItem a,
.btnItem a:hover {
  background: var(--primaryColor);
  color: var(--white);
}

.modelBtnsContainer ul a {
  color: var(--darkBlue);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.5rem 1rem;
  background: var(--white);
  font-size: 1.2rem;
  margin: 1rem 1rem 1rem 0;
  box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 18%);
  border-radius: 10px;
  font-weight: 600;
  transition: all linear 0.3s;
}

.modelBtnsContainer ul a.active {
  background: var(--primaryColor) !important;
  color: white !important;
}

.modelBtnsContainer ul li.activeMenuItem a,
.modelBtnsContainer ul a:hover {
  background: var(--primaryColor);
  color: var(--white);
}

.prodImageShadeBox {
  padding: 0.5rem 1rem;
  background: var(--white);
  font-size: 1.2rem;
  margin: 1rem 0;
  box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 18%);
  border-radius: 10px;
  font-weight: 600;
  transition: all linear 0.3s;
  text-align: center;
}

.prodImageShadeBox .prodShadeContainer {
  width: 80%;
  margin: 0px auto;
}

.prodImageShadeBox .prodShadeContainer img {
  width: 100%;
  margin: 0px auto;
}

.prodImageShadeBox h4 {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0.5rem auto;
  color: var(--darkBlue);
}

.prodImageShadeBox.active h4 {
  color: var(--white);
}

.prodImageShadeBox:hover {
  background: var(--primaryColor);
}

.prodImageShadeBox:hover h4 {
  color: var(--white);
}

.prodImageShadeBox.d-flex.align-items-center .prodShadeContainer {
  width: 60px;
}

/* link pages code end  */

/*popup main code start */

.popupForDelAndPic {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--fadeBlue);
  z-index: 555;
  top: 0;
  left: 0;
  overflow: hidden;
}

.popupForDelAndPic .popupItemsContainer {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.popupForDelAndPic .popupItemsContainer .innerPopupBox {
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--white);
  padding: 2rem;
  border-radius: 20px;
}

.popupForDelAndPic .popupItemsContainer .innerPopupBoxx {
  width: 28%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--white);
  padding: 1rem 1rem 0.9rem 1rem;
  border-radius: 20px;
}

.takeAwayContainer .popupHeadingIcon,
.deliverySelector .popupHeadingIcon {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 1rem;
  border-radius: 10px 10px 0 0px;
}

.takeAwayContainer .popupHeadingIcon {
  background: var(--primaryColor);
}

.deliverySelector .popupHeadingIcon {
  background: var(--darkBlue);
}

.w3-pink,
.w3-hover-pink:hover {
  color: #fff !important;
  background-color: var(--primaryColor) !important;
}

.popupHeadingIcon h5 {
  font-size: 1.2rem;
  color: var(--white);
  margin: 0;
  display: flex;
  flex: 1;
}

.popupHeadingIcon a {
  color: var(--white);
}

.popupHeadingIcon a:hover {
  color: var(--white) !important;
  text-decoration: underline !important;
}

.popupHeadingIcon span {
  font-size: 1.5rem;
  color: var(--white);
}

.optionsContainer {
  position: relative;
  overflow: hidden;
}

.innerPopupBox select.form-control {
  box-shadow: none !important;
  background: var(--lightGray) !important;
  cursor: pointer !important;
  outline: none !important;
  border: none !important;
  /* padding: 1rem !important; */
  border-radius: 0 0 10px 10px !important;
  color: var(--darkBlue) !important;
  font-size: 1.2rem !important;
  font-weight: 600 !important;
}

.optionsContainer::before {
  content: "" !important;
  height: 0px !important;
  width: 0px !important;
  position: absolute !important;
  top: 30% !important;
  right: 10px !important;
  transform: translateY(-50%) !important;
  z-index: 5 !important;
  border: none !important;
  border-top: 7px solid var(--darkBlue) !important;
  border-left: 7px solid transparent !important;
  border-right: 7px solid transparent !important;
}

/* popup main code end  */

/* product page code start  */

.adressAndDeliveryBtns {
  margin: 1rem 0;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

.delTakeInnerContainer {
  width: 80%;
  margin: 0px auto;
}

.adressAndDeliveryBtns h2.nomralDetail {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
}

.adressAndDeliveryBtns h2.nomralDetail span {
  display: block;
  font-weight: normal;
  font-size: 1rem;
}

.deliveryDetailBox,
.takeAwayDetailBox {
  padding: 1.5rem;
  position: relative;
}

.takeAwayDetailBox {
  background: var(--primaryColor);
  border-radius: 10px 0 0 10px;
}

.deliveryDetailBox {
  background: var(--darkBlue);
  border-radius: 0 10px 10px 0;
}

a.changeDetailPencil {
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 5;
}

a.changeDetailPencil img {
  width: 20px;
}

.menuListeBtns .modelBtnsContainer ul {
  justify-content: flex-start;
}

.menuListeBtns .modelInerBox {
  margin: 0 !important;
  overflow: hidden;
}

/*product boxes on product page code start */

.prodShadowBox {
  position: relative;
  transition: all linear 0.3s;
  box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 18%);
  background: var(--white);
  padding: 1rem;
  border-radius: 0px;
  text-align: center;
  margin: 1rem 0;
  top: 0;
  transition: all linear 0.3s;
}

.prodShadowBox:hover {
  top: -20px;
  border-radius: 15px;
}

.prodShadowBox .prodImageContainer {
  width: 85%;
  margin: 1rem auto;
  transform: scale(1);
  transition: all linear 0.3s;
}

.prodImageContainer img.img-fluid.productBoxImage {
  width: 100%;
  transition: all linear 0.3s;
}

h3.prodTitle {
  font-size: 24px;
  color: var(--primaryColor);
  font-family: knockOut-Light-Weight, sans-serif, bold;
  letter-spacing: 1px;
}

p.prodDetail {
  color: var(--darkBlue);
  font-size: 0.9rem;
  overflow-wrap: break-word;
}

.poductExtra,
.cutsomProdSizes,
.poductSizesSimple {
  margin: 1.5rem -12px;
  width: 111%;
  /* max-width: 100%; */
  display: flex;
  /* padding: 0 1rem; */
  align-items: center;
  justify-content: center;
}

.poductExtra ul,
.cutsomProdSizes ul,
.poductSizesSimple ul {
  background: var(--mediumFadeGray);
  flex-wrap: wrap;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-direction: row;
  box-shadow: 0px 0px 7px 4px rgb(0 0 0 / 11%);
  padding: 0 !important;
}

.poductExtra ul li a,
.cutsomProdSizes ul li a,
.poductSizesSimple ul li a {
  color: var(--darkBlue);
  font-weight: 500;
  font-size: 1rem;
  margin: 0.5rem;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all linear 0.3s;
}

@media (max-width: 1650px) {

  .poductExtra ul li a,
  .cutsomProdSizes ul li a,
  .poductSizesSimple ul li a {
    font-size: 0.8rem;
    margin: 0.5rem 0.1rem;
  }
}

@media (max-width: 1400px) {

  .poductExtra ul li a,
  .cutsomProdSizes ul li a,
  .poductSizesSimple ul li a {
    font-size: 0.6rem;
  }
}

.poductExtra ul li:hover a,
.poductExtra ul li.activeExtra a,
.cutsomProdSizes ul li.activeSize a,
.poductSizesSimple ul li:hover a,
.cutsomProdSizes ul li:hover a,
.poductSizesSimple ul li.activeSize a {
  background: var(--lightgreen) !important;
  box-shadow: 0px 0px 7px 4px rgb(0 0 0 / 5%);
  color: var(--white) !important;
}

.prodPriceAndAddBtn {
  margin: 0.5rem 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 0;
}

.prodPriceAndAddBtn .prodPrice {
  flex: 1;
  display: flex;
  width: 100%;
  color: var(--navydarkblue);
  font-size: 1.2rem;
  margin: 0;
  font-weight: 600;
  align-items: center;
}

button.directAddToCart,
button.btn.prodTypShowBtn {
  justify-content: flex-end;
  transition: all linear 0.5s;
  padding: 0 !important;
  margin: 0 !important;
}

span.AddIcon svg {
  width: 25px;
}

.prodTypeBtns {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  text-align: center;
  padding: 1rem 0;
  background: var(--white);
  border: 2px solid var(--primaryColor);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transform: translateX(120%);
  transition: all linear 0.3s;
}

.prodTypeBtns a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  color: var(--darkBlue);
  font-size: 1.1vw;
  font-weight: 600;
  position: relative;
}

@media (max-width: 1550px) {
  .prodTypeBtns a {
    font-size: 1vw;
  }
}

.prodTypeBtns button.btn.closeProdTypeBtn {
  position: absolute;
  right: 5px;
  z-index: 5;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  margin: 0;
}

.prodTypeBtns button.btn.closeProdTypeBtn span svg {
  width: 20px;
}

button.directAddToCart:hover span.AddIcon svg circle,
button.btn.prodTypShowBtn:hover span.AddIcon svg circle {
  fill: var(--darkBlue);
}

.prodTypeBtns button.btn.closeProdTypeBtn:hover span circle {
  fill: var(--primaryColor);
}

.prodTypeBtns.show {
  transform: translateX(0);
}

.prodTypeBtns a:first-child::before {
  content: "";
  background: var(--primaryColor);
  width: 2px;
  height: 90%;
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
}

.zeroOpacity {
  pointer-events: none;
  opacity: 0;
}

.offerAdsMainContainer .owl-carousel.off {
  display: block;
}

/*product boxes on product page code start */

/* custom prod page code start  */

.customProductContainer {
  position: relative;
  margin: 1rem 0;
  padding: 0;
}

.customProdBox {
  text-align: center;
}

.customProdBox h2.productName {
  color: var(--darkBlue);
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 1.5rem 0;
}

.prodImagWithIngContainer {
  text-align: center;
  margin: 2rem 0;
  padding: 0 0.5rem;
}

.productImageContainer {
  width: 100%;
  position: relative;
}

.productImageContainer img.img-fluid {
  width: 100%;
  user-select: none;
}

.prodQunatitChanger {
  margin: 1rem 0;
}

div.prodSideIng {
  padding: 0;
  margin: 2rem 0 0 0 !important;
}

div.prodSideIng li {
  display: inline-table;
}

div.prodSideIng button.btn {
  margin: 0;
  position: relative;
}

div.prodSideIng button.btn img {
  width: 100%;
}

.quantitSelector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.quantitSelector input#numberofItems {
  width: 36px;
  text-align: center;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--darkBlue);
  outline: none !important;
  box-shadow: none !important;
}

/* Chrome, Safari, Edge, Opera */

.quantitSelector input#numberofItems::-webkit-outer-spin-button,
.quantitSelector input#numberofItems::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */

.quantitSelector input#numberofItems[type="number"] {
  -moz-appearance: textfield;
}

.quantitSelector input#numberofItems:focus {
  border: 3px solid var(--primaryColor) !important;
  border-radius: 10px;
}

.customProdDetail {
  margin: 3.5rem 0 2rem 0;
  padding: 0 0.5rem;
}

h2.productExtraIngHeading,
h2.descriptionTitle {
  color: var(--darkBlue);
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 1.5rem 0 0 0;
}

.extraSpecialIng {
  position: relative;
  margin: 0.5rem 0;
  width: 100%;
}

p.prodDescription {
  color: var(--darkBlue);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1rem 0;
}

.extraSpecialIng ul#extraIngredients {
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  border: none;
  position: relative;
  z-index: 5;
}

.extraSpecialIng ul#extraIngredients button.nav-link {
  color: var(--darkBlue);
  font-weight: 500;
  font-size: 1rem;
  margin: 0.5rem 0.5rem;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--darkBlue);
  transition: all linear 0.3s;
}

.extraSpecialIng ul#extraIngredients button.nav-linkk {
  color: var(--darkBlue);
  font-weight: 500;
  font-size: 1rem;
  margin: 0.5rem 0.5rem;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--darkBlue);
  transition: all linear 0.3s;
}

.menuOfferItems ul a.nav-link:hover,
.menuOfferItems ul a.nav-link.active,
.extraSpecialIng ul#extraIngredients button.nav-link.active {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--white);
}

.menuOfferItems ul a.nav-link:hover,
.menuOfferItems ul a.nav-link.active,
.extraSpecialIng ul#extraIngredients button.nav-linkk.active {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--white);
}

.extraSpecialIng div.tab-content {
  width: calc(100% + 2rem);
  margin-left: -1rem;
}

.extraSpecialIng div.tab-content {
  overflow: hidden;
  /* padding-left: 2rem; */
  margin: 0.5rem 0;
  width: 100%;
}

ul.extraList {
  padding: 0 0 0 1rem;
  margin: 0;
}

ul.extraList button.btn.extraIngBtn {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0.5rem 0;
  font-size: 1.2rem;
  color: var(--darkBlue);
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

ul.extraList button.btn.extraIngBtn img {
  width: 85px;
  margin: 0 0.5rem 0 1rem;
}

ul.extraList button.btn.extraIngBtn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--white);
  width: 30px;
  border: 4px solid var(--darkBlue);
  height: 30px;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: all linear 0.3s;
}

ul.extraList button.btn.extraIngBtn.fadeDisabled,
ul.extraList button.btn.extraIngBtn:hover {
  color: var(--primaryColor);
}

ul.extraList button.btn.extraIngBtn.fadeDisabled::before,
ul.extraList button.btn.extraIngBtn:hover::before {
  border: 4px solid var(--primaryColor);
}

ul.extraList button.btn.extraIngBtn span.removIcon {
  position: absolute !important;
  left: -34px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
}

ul.extraList button.btn.extraIngBtn span.removIcon img {
  width: 15px !important;
}

.ingrCheckBoxes {
  display: none !important;
}

img.ingPack {
  opacity: 0;
  z-index: -1;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(6);
  transition: all linear 0.8s;
}

.activeIngredient {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
  z-index: 2 !important;
}

span.removIcon {
  transform: translate(500%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

span.removIcon1 {
  transform: translate(415%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

span.removIcon2 {
  transform: translate(370%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

span.removIcon3 {
  transform: translate(508%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

span.removIcon img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
}

span.removIcon1 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
}

span.removIcon2 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
}

span.removIcon3 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
}

/*Custom cart 1*/
span.remIcon {
  transform: translate(500%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

span.remIcon1 {
  transform: translate(415%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

.remIcon2 {
  width: 28px !important;
  padding: 0;
  position: relative;
  bottom: 25px;
  display: none;
  left: 15px;
  /* text-align-last: end; */
  border-radius: 55%;
  background: white;
}

span.remIcon3 {
  transform: translate(508%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

span.remIcon img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
}

span.remIcon1 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
}

.remIcon2 img {
  display: none;
}

span.remIcon3 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
}

.addIcon {
  transform: translate(515%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

.addIcon1 {
  transform: translate(424%, -71%) !important;
  width: 28px !important;
  padding: 0px;
  border-radius: 2;
  border-radius: 55%;
  background: white;
}

.addIcon2 {
  transform: translate(370%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

.addIcon3 {
  transform: translate(515%, -71%) !important;
  width: 28px !important;
  padding: 0;
  border-radius: 55%;
  background: white;
}

.addIcon img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
  left: 11px;
}

.addIcon1 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
  left: 11px;
}

.addIcon2 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
  left: 11px;
}

.addIcon3 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
  left: 11px;
}

.fadeDisabled span.removIcon img {
  opacity: 1 !important;
  display: block;
}

.fadeDisabled span.removIcon1 img {
  opacity: 1 !important;
  display: block;
}

.fadeDisabled span.removIcon2 img {
  opacity: 1 !important;
  display: block;
}

.fadeDisabled span.removIcon3 img {
  opacity: 1 !important;
  display: block;
}

.addPlusIcon {
  width: 28px !important;
  padding: 0;
  position: relative;
  bottom: 25px;
  left: 15px;
  /* text-align-last: end; */
  border-radius: 55%;
  background: white;
}

.addPlusIcon1 {
  width: 28px !important;
  padding: 0;
  position: relative;
  bottom: 25px;
  left: 15px;
  /* text-align-last: end; */
  border-radius: 55%;
  background: white;
}

.addPlusIcon2 {
  width: 28px !important;
  padding: 0;
  position: relative;
  bottom: 25px;
  left: 15px;
  /* text-align-last: end; */
  border-radius: 55%;
  background: white;
}

.addPlusIcon3 {
  width: 28px !important;
  padding: 0;
  position: relative;
  bottom: 25px;
  left: 15px;
  /* text-align-last: end; */
  border-radius: 55%;
  background: white;
}

.addPlusIcon img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
  left: 11px;
}

.addPlusIcon1 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
  left: 11px;
}

.addPlusIcon2 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
  left: 11px;
}

.addPlusIcon3 img {
  width: 30px !important;
  margin: 0px auto;
  opacity: 0;
  display: none;
  position: relative;
  left: 11px;
}

.fadeDisabled span.remIcon img {
  opacity: 1 !important;
  display: block;
}

.fadeDisabled span.remIcon1 img {
  opacity: 1 !important;
  display: block;
}

.fadeDisabled .remIcon2 {
  display: block;
}

.fadeDisabled span.remIcon3 img {
  opacity: 1 !important;
  display: block;
}

.fadeDis button.CustomExtraButton {
  border: 1px solid var(--youtubeColor) !important;
}

.fadeDis button.CustomExtraButton {
  border: 1px solid var(--youtubeColor) !important;
}

.fadeDis button.CustomExtraButton {
  border: 1px solid var(--youtubeColor) !important;
}

.fadeDis button.CustomExtraButton {
  border: 1px solid var(--youtubeColor) !important;
}

.fadeDisabledPlus img.addIcon {
  opacity: 1 !important;
  display: none;
}

.fadeDisabledPlus img.addIcon1 {
  opacity: 1 !important;
  display: none;
}

.fadeDisabledPlus img.addIcon2 {
  opacity: 1 !important;
  display: none;
}

.fadeDisabledPlus img.addIcon3 {
  opacity: 1 !important;
  display: none;
}

.fadeDisabledPlus img.addPlusIcon {
  opacity: 1 !important;
  display: none;
}

.fadeDisabledPlus img.addPlusIcon1 {
  opacity: 1 !important;
  display: none;
}

.fadeDisabledPlus img.addPlusIcon2 {
  opacity: 1 !important;
  display: none;
}

.fadeDisabledPlus img.addPlusIcon3 {
  opacity: 1 !important;
  display: none;
}

/* ingredient animation code end  */

/*check box for ing  code end*/

h2.prodPrice {
  color: var(--primaryColor);
  font-size: 2.2rem;
  text-transform: uppercase;
  font-weight: 600;
  margin: 1.5rem 0 0 0;
}

.totalPrice {
  margin: 0.5rem 0;
  margin: 1.5rem 0.5rem;
  font-size: 8rem;
  font-weight: 500;
}

.totalPricee {
  margin: 0.5rem 0;
  margin: 1.5rem 0.5rem;
  font-size: 8rem;
  font-weight: 500;
}

.customAddCartContainer {
  position: relative;
  overflow: hidden;
  margin: 1rem 0;
}

button.btn.addToCartCustom {
  transition: all linear 0.3s;
  min-width: 100%;
  display: flex;
  align-items: center;
  background: var(--primaryColor) !important;
  color: var(--white) !important;
  text-transform: uppercase;
  font-size: 1.5rem;
  /* margin-left: 176px; */
  font-weight: 600;
  padding: 0.5rem 1rem;
  overflow: hidden;
  border-radius: 10px;
}

button.btn.addToCartCustomm {
  transition: all linear 0.3s;
  min-width: 60%;
  display: flex;
  align-items: center;
  background-color: var(--white) !important;
  color: var(--navydarkblue) !important;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-left: 166px;
  font-weight: 600;
  padding: 0.5rem 1rem;
  overflow: hidden;
  border: var(--primaryColor) 1px solid !important;
  border-radius: 10px;
}

button.btn.addToCartCustom span.btnTxt {
  display: flex;
  flex: 1;
  justify-content: flex-start;
}

button.btn.addToCartCustom span.btnIcon {
  position: relative;
  left: 0;
  transition: all linear 0.3s;
}

button.btn.addToCartCustom span.btnIcon svg {
  width: 45px;
}

button.btn.addToCartCustom:hover {
  background: var(--darkBlue) !important;
}

button.btn.addToCartCustomm:hover span.btnIcon {
  left: 10px;
}

button.btn.addToCartCustomm span.btnTxt {
  display: flex;
  flex: 1;
  justify-content: flex-start;
}

button.btn.addToCartCustomm span.btnIcon {
  position: relative;
  left: 0;
  transition: all linear 0.3s;
}

button.btn.addToCartCustomm span.btnIcon svg {
  width: 45px;
}

button.btn.addToCartCustomm:hover {
  background: var(--primaryColor) !important;
  color: white !important;
}

button.btn.addToCartCustomm:hover svg path {
  fill: var(--white);
}

button.btn.addToCartCustomm:hover span.btnIcon {
  left: 10px;
}

/* custom prod page code end  */

/*pizzaBox css start */

.animatedPizzaBox {
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%) scale(0);
  z-index: 0;
  width: 100%;
  transition: all linear 0.5s;
}

.pizzaBoxContainer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 0;
  perspective: 1100px;
  perspective-origin: 50% -414px;
}

.pizzaBoxCube {
  margin-bottom: 100px;
  position: relative;
  width: 100%;
  height: 200px;
  transform-style: preserve-3d;
}

.pizzaBoxCube div {
  background-size: cover;
  background-position: center center;
  opacity: 1;
  position: absolute;
  width: 200px;
  box-shadow: inset 0px 0px 30px 10px rgba(0, 0, 0, 0.5);
}

.BurgerBoxCube {
  margin-bottom: 100px;
  position: relative;
  width: 100%;
  height: 200px;
  transform-style: preserve-3d;
}

.BurgerBoxCube div {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  position: absolute;
  width: 200px;
  box-shadow: inset 0px 0px 30px 10px rgba(0, 0, 0, 0.5);
}

.BoxBack {
  background: url(../img/cardBoard.jpg);
  background-size: cover;
  background-position: center center;
  height: 20px;
  transform: translateZ(-100px) rotateY(180deg);
}

.BoxRight {
  background: url(../img/cardBoard.jpg);
  background-size: cover;
  background-position: center center;
  height: 20px;
  transform: rotateY(-270deg) translateX(100px);
  transform-origin: top right;
}

.BoxLeft {
  background: url(../img/cardBoard.jpg);
  background-size: cover;
  background-position: center center;
  height: 20px;
  transform: rotateY(270deg) translateX(-100px);
  transform-origin: center left;
}

.BoxBottom {
  background: url(../img/cardBoard.jpg);
  background-size: cover;
  background-position: center center;
  height: 200px;
  transform: rotateX(90deg) translateY(100px) translatez(180px);
  transform-origin: bottom center;
}

.BoxFront {
  background: url(../img/cardBoard.jpg);
  background-size: cover;
  background-position: center center;
  height: 20px;
  transform: translateZ(100px);
}

.BoxTop {
  background: url(../img/PizzaBoxTop.png);
  background-size: cover;
  background-position: center center;
  height: 200px;
  transform: translateZ(-100px) rotateX(90deg);
  transform-origin: top center;
  transition-duration: 2s;
}

.BurgerTop {
  /*background: url(../img/burger1.png);*/
  height: 150px;
  background-position: center center;
  box-shadow: none !important;
  transform-origin: top center;
  transition-duration: 2s;
}

.PizzaBoxBigCube {
  position: relative;
  width: 200px;
  height: 30px;
  transform-style: preserve-3d;
  transform: rotatey(0deg);
}

.PizzaBoxBigCube .BoxTop {
  transform-origin: top center;
  transform: translateZ(-100px) rotateX(120deg);
}

.productInnerContainer.activePizza {
  top: -65px;
  display: flex;
  transform: translateZ(-63px) rotateX(70deg) rotatez(184deg) translateY(15px) scale(0.5);
}

.animatedPizzaBox.activeBox {
  transform: translate(-50%, -50%) scale(1.6);
}

.animatedPizzaBox.activeBox .PizzaBoxBigCube .BoxTop {
  transform: translateZ(-100px) rotateX(90deg);
  transform-origin: top center;
}

.readForPackingBox {
  transition: all linear 2s;
}

.productInnerContainer.activePizza .readForPackingBox {
  opacity: 0;
}

.productInnerContainer.activeBox.BoxAddedIntoCart {
  transform: scale(0.3) translate(-50%, -50%) rotate(44deg);
  left: 15%;
  z-index: 10;
}

.productInnerContainer {
  position: relative;
}

.productInnerContainer,
.cutomProdContainer {
  transition: all linear 0.7s;
}

.productInnerContainer img {
  width: 100%;
}

.productInnerContainer.activePizza {
  opacity: 0;
  display: flex;
  transform: translateZ(-63px) rotateX(70deg) rotatez(184deg) translateY(10px) scale(0.3);
}

/*pizzaBox css end*/

/* product page code end  */

/* cart page css code start  */

h2.cartPageHeading {
  margin: 2rem auto;
  text-align: center;
  color: var(--primaryColor);
  font-weight: 600;
  text-transform: uppercase;
}

@media only screen and (min-width: 991px) {
  .cartPageContainer img.img-fluid.prodCartImg {
    width: 100%;
  }

  .cartPageContainer button.btn.validateBtn span.CartIconAndPrice span.cartBtnIcon img {
    width: 45px;
  }

  .cartPageContainer span.TotalCartItemsAndPrice {
    font-size: 18px;
    margin-left: 6px;
    font-weight: 500;
  }

  .cartPageContainer span.cartBtnTxt {
    font-size: 18px;
    text-transform: uppercase;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
  }

  .cartPageContainer .cartItemNameAndPrice h3.cartItemPrice {
    font-size: 25px;
  }
}

/* cart page css code end  */

/* login signup page code start  */

.formMainContainer {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.comDetailPrice {
  font-weight: 500;
  font-size: 17px;
}

.formShadowContainer {
  border-radius: 20px;
  padding: 2rem;
  font-weight: 700;
  /* position: absolute; */
  color: var(--navydarkblue);
  /* width: max-content; */
  font-size: 10px;
  box-shadow: 1px 1px 6px 5px rgb(45 67 85 / 15%);
  margin: 2.1rem auto;
}

span#select2-js3m-container {
  display: none !important;
}

span#select2-afrq-container {
  display: none !important;
}

.formShadowContainerFix {
  border-radius: 20px;
  padding: 2rem 0.5rem 2rem 2rem;
  font-weight: 700;
  /* position: absolute; */
  color: var(--navydarkblue) !important;
  width: 50%;
  font-size: 10px;
  box-shadow: 1px 1px 6px 5px rgb(45 67 85 / 15%);
  margin: 2.1rem auto;
}

.formShadowContainerr {
  border-radius: 20px;
  padding: 2rem 0rem 2rem 1rem;
  font-weight: 400;
  color: var(--darkblue) !important;
  color: var(--darkblue) !important;
  /* width: max-content; */
  font-size: 10px;
  box-shadow: 1px 1px 6px 5px rgb(45 67 85 / 15%);
  width: 90%;
  font-size: 7px;
  margin: 2.1rem 0rem 2.1rem 4.2rem;
}

.CustomTextView {
  transform: translate(-70px, 10px);
  width: 70%;
  float: inline-end;
}

.formShadowContainer .userFormContainer {
  width: 50%;
  text-align: center;
  color: var(--navydarkblue);
  margin: 0.5rem auto;
}

.tabForm .userFormContainer {
  width: auto !important;
}

h2.formHeading {
  text-align: center;
  margin: 1rem 0;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--darkBlue);
}

.inputWithIcon {
  position: relative;
}

span.inputBoxIcon {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
}

span.inputBoxIcon img.lengthIcon {
  width: 20px;
}

span.inputBoxIcon img.wideIcon {
  width: 25px;
}

.userFormContainer input.form-control.rounded-pill.customInput {
  padding: 1rem;
  background: transparent;
  color: var(--darkBlue) !important;
  border: 1px solid #b0b0b0 important;
  font-size: 16px;
  margin: 0rem 0 1.5rem 0;
}

.inputWithIcon input.form-control.rounded-pill.customInput {
  padding-left: 3rem !important;
}

.formActionBtn button.btn.validateBtn {
  background: var(--primaryColor) !important;
  width: 62%;
  height: 50px;
  text-transform: uppercase;
  color: var(--white);
  margin: 1rem auto;
  transition: all linear 0.5s;
}

.formActionBtn button.btn.validateBtn:hover {
  background: var(--darkBlue) !important;
  width: 95%;
}

p.formSubTxt {
  color: var(--darkBlue);
  text-align: center;
  margin-top: -9px;
  margin-bottom: 16px;
  opacity: 0.8;
}

/* date picker css start  */

.timePicekerWrapper,
.datePickerWrapper {
  position: relative;
}

#datepicker {
  position: relative;
}

span.BtmArrowIcon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

#ui-datepicker-div {
  display: none;
  background-color: var(--white);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--darkBlue);
}

.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0;
}

.ui-datepicker-calendar tbody td a {
  display: block;
  border-radius: 0.25rem;
  line-height: 2rem;
  transition: 0.3s all;
  color: var(--darkBlue);
  font-size: 0.875rem;
  text-decoration: none;
}

.ui-datepicker-calendar tbody td a:hover {
  background-color: var(--mediumGray);
}

.ui-datepicker-calendar tbody td a.ui-state-active {
  background-color: var(--primaryColor);
  color: var(--white);
}

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all;
}

.ui-datepicker-header a.ui-corner-all:hover {
  background-color: var(--fadePink);
}

.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
  transform: rotate(180deg);
}

.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 50%;
}

.ui-datepicker-header a&gt;span {
  display: none;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem;
}

.ui-datepicker-week-col {
  color: var(--darkBlue);
  font-weight: 400;
  font-size: 0.75rem;
}

/* date picker css end  */

/* form check box and radio css code start  */

.checkBoxNLbl,
.radioBoxNLbl {
  display: flex;
  width: 100%;
  align-items: center;
  margin: 0 0 1rem 0;
  text-align: left;
}

.checkBoxNLbl label,
.radioBoxNLbl label {
  margin: 0 !important;
  padding: 0 !important;
}

.checkBoxNLbl input[type="checkbox"],
.radioBoxNLbl input[type="radio"] {
  /*! width: 0; */
  /*! height: 0; */
  background: transparent;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  border-radius: 100%;
  position: relative;
}

.checkBoxNLbl input[type="checkbox"]::before,
.radioBoxNLbl input[type="radio"]::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--white);
  position: absolute;
  top: -5px;
  left: -2px;
  box-shadow: 0px 0px 3px 4px rgb(151 151 151 / 25%);
  z-index: 5;
}

.checkBoxNLbl input[type="checkbox"]::before {
  border-radius: 5px;
}

.radioBoxNLbl input[type="radio"]::before {
  border-radius: 100%;
}

.checkBoxNLbl input[type="checkbox"]::after,
.radioBoxNLbl input[type="radio"]::after {
  content: "";
  background: var(--primaryColor) !important;
  position: absolute;
  top: -6px;
  width: 20px;
  height: 20px;
  left: -2px;
  z-index: 5;

  transform: scale(0);
  transition: all linear 0.3s;
}

.checkBoxNLbl input[type="checkbox"]::after {
  border-radius: 2px;
}

.radioBoxNLbl input[type="radio"]::after {
  border-radius: 100%;
}

.checkBoxNLbl label span,
.radioBoxNLbl label span {
  font-size: 1rem;
  margin-left: 15px;
  color: var(--darkBlue);
  font-weight: 500;
  position: relative;
  /* top: 7px; */
}

.checkBoxNLbl input[type="checkbox"]:checked::after,
.radioBoxNLbl input[type="radio"]:checked::after {
  transform: scale(1);
}

/* form check box and radio css code end  */

/* login signup Page code end  */

/* media queies code start  */

@media only screen and (max-width: 1410px) {
  .prodImageShadeBox h4 {
    font-size: 1rem;
  }

  .poductExtra ul li a,
  .poductSizesSimple ul li a {
    font-size: 0.6rem;
  }
}

@media only screen and (max-width: 1300px) {
  .cartPageContainer img.img-fluid.prodCartImg {
    width: 100%;
  }

  .slideTextContainer h1 br {
    display: none;
  }

  .slideTextContainer h1 {
    font-size: 6rem;
  }
}

@media only screen and (max-width: 1100px) {
  img.logoImg {
    width: 180px;
  }

  nav.mainNav a {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 991px) {
  .formShadowContainer {
    padding: 1rem;
    color: var(--navydarkblue);
    margin: 1rem 0;
  }

  .nav-pills .nav-item {
    width: 100%;
    margin: 5px;
  }

  .formShadowContainer .userFormContainer {
    width: 95%;
  }

  h2.cartPageHeading {
    margin: 1rem auto;
  }

  ul.prodSideIng {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }

  .linkPageContainer .customProductContainer {
    margin-top: -50px;
    margin-bottom: -50px;
  }

  .poductExtra,
  .poductSizesSimple {
    margin: 0.5rem auto;
  }

  .customProdDetail {
    margin: -50px 0 0 0;
    text-align: center;
    overflow: hidden;
  }

  p.prodDescription {
    font-size: 1rem;
    margin: 0;
  }

  .customProdDetail h2.descriptionTitle {
    margin-top: 10px;
  }

  h2.productExtraIngHeading,
  h2.descriptionTitle {
    margin-top: 10px;
    font-size: 1.5rem;
  }

  ul.extraList button.extraIngBtn img {
    width: 60px;
  }

  ul.extraList button.extraIngBtn {
    font-size: 1rem;
  }

  button.btn.addToCartCustom span.btnTxt,
  h2.prodPrice {
    font-size: 1.5rem;
  }

  button.btn.addToCartCustom span.btnIcon svg {
    width: 30px;
  }

  button.btn.addToCartCustom {
    justify-content: center;
    width: 100%;
  }

  .extraSpecialIng ul#extraIngredients {
    justify-content: center;
  }

  .sideBarContainer {
    width: 80%;
  }

  .centerNavLink {
    display: none;
  }

  img.logoImg {
    width: 150px;
  }

  a.navTel {
    font-size: 0 !important;
  }

  ul.navSideIcons {
    margin: 0 !important;
  }

  button.btn.cartBtn span.cartIcon svg {
    width: 25px;
  }

  a.userIcon svg {
    width: 20px;
  }

  a.userIcon2 svg {
    width: 20px;
  }

  button.btn.cartBtn span.cartCounterIcon svg {
    width: 17px;
  }

  button.btn.cartBtn span.cartCounterIcon {
    top: -16px;
    left: 8px;
  }

  button.btn.cartBtn span.cartCounterIcon span.cartCounter {
    font-size: 12px;
    top: calc(45% - 0px);
  }

  .hamBurgerIcon button#menuBtn span {
    width: 25px;
    height: 4px;
  }

  .hamBurgerIcon button#menuBtn span:nth-child(2) {
    width: 30px;
  }

  .mobileCommandBtn ul {
    display: block;
  }

  .cartDrawerContainer {
    width: 60%;
    top: 80px;
  }

  .cartDrawerContainer.activeDrawer {
    transform: translateY(0%);
  }

  .drawerInnerContainer {
    height: 65vh;
  }

  .footerDetailArea {
    text-align: center;
  }

  .footerDetailArea .storeIcons {
    justify-content: center;
  }

  .footerDetailArea,
  .mainCategories {
    padding: 2rem 0;
  }

  .footerDetailArea,
  .mainCategoriess {
    padding: 2rem 0;
  }

  .categoryBox {
    transform: scale(1);
  }

  .mainCategories .row.mt-5.mb-5 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .mainCategoriess .row.mt-5.mb-5 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  h2.secSubTitlte {
    font-size: 1.5rem;
  }

  .ftTxtContainer h2,
  h1.secTitlte {
    font-size: 1.8rem;
  }

  .modelBtnsContainer ul {
    flex-wrap: wrap;
    justify-content: center;
  }

  .prodImageShadeBox.d-flex.align-items-center .prodShadeContainer {
    width: 60%;
  }

  .adressAndDeliveryBtns {
    padding: 0rem 0.5rem;
  }

  .deliveryDetailBox,
  .takeAwayDetailBox {
    border-radius: 10px;
    margin: 0.5rem 0;
  }

  .delTakeInnerContainer {
    width: 100%;
    margin: 0px auto;
  }

  .modelBtnsContainer {
    overflow: hidden !important;
  }

  .menuListeBtns .modelBtnsContainer ul {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-y: hidden;
    overflow-x: scroll;
    padding: 0 5px !important;
    margin: 0 !important;
  }

  .modelBtnsContainer ul a {
    min-width: max-content;
  }

  /* width */
  .modelBtnsContainer ul::-webkit-scrollbar {
    width: 0px !important;
  }

  /* Track */
  .modelBtnsContainer ul::-webkit-scrollbar-track {
    background: var(--white);
  }

  /* Handle */
  .modelBtnsContainer ul::-webkit-scrollbar-thumb {
    background: transparent;
  }

  /* Handle on hover */
  .modelBtnsContainer ul::-webkit-scrollbar-thumb:hover {
    background: transparent;
  }

  .bottomRowItemsList {
    flex-direction: column;
  }

  ul.ft-socials,
  .rightBtmRowItm,
  .leftBtmRowItm {
    justify-content: center;
    margin: 0.5rem auto;
    width: 100%;
  }

  .ftBotttomRow {
    padding: 0.5rem 0;
  }

  .linkPageContainer {
    padding: 5rem 0 3rem 0;
  }

  .slideTextContainer {
    width: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .slideTextContainer h1 {
    text-align: center;
    font-size: 3rem;
    line-height: normal;
  }

  .slideTextContainer h1 span {
    font-size: 5rem;
  }

  .centerTxtElement span {
    opacity: 0.6;
    font-size: 100vh;
  }

  .centerTxtElement span {
    opacity: 0.6;
    font-size: 100vh;
  }

  .heroMenuBtnContainer a {
    border: 5px solid var(--fadeWhite);
    padding: 0.5rem 10rem 0.5rem 0.5rem;
    font-size: 1.2rem;
  }

  .heroMenuBtnContainer a span svg {
    width: 40px;
    right: 0.5rem;
  }

  button.mvToBtm {
    bottom: 3%;
    height: 40px;
    width: 30px;
  }

  .sliderBtnNProgressContainer {
    flex-direction: column-reverse;
    width: 95%;
    right: unset;
    overflow: hidden;
    left: 50%;
    transform: translateX(-50%);
  }

  .sliderProgressContainer {
    margin: 1rem auto;
  }

  .heroMenuBtnContainer {
    margin: 1rem auto;
  }
}

@media only screen and (max-width: 600px) {
  .cartDrawerContainer {
    width: 95%;
    top: 80px;
    left: 50%;
    right: unset;
  }

  .cartDrawerContainer.activeDrawer {
    transform: translate(-50%, 0%) !important;
  }

  .popupForDelAndPic .popupItemsContainer .innerPopupBox {
    width: 90%;
    padding: 1rem;
  }

  .popupForDelAndPic .popupItemsContainer .innerPopupBoxx {
    width: 90%;
    padding: 1rem;
  }

  .innerPopupBox select.form-control option,
  .innerPopupBox select.form-control {
    font-size: 1rem !important;
  }

  .owl-item.active .slideTextContainer h1 {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 335px) {
  img.logoImg {
    width: 110px;
  }
}

/* media queies code end  */

nav.mainNav.stickyHeader .rightNavItems {
  display: none;
}

.retourBtn {
  position: relative;
  left: 10px;
}

.retourBtn img {
  position: relative;
  left: 10px;
  height: 50px;
}

/* offer page css end  */

/* link page text area code start  */

.linkPageTxtDetails {
  padding: 0.5rem 0;
}

.linkPageTxtDetails p {
  color: #000;
  font-size: 0.8rem;
  font-weight: 500;
}

.linkPageTxtDetails h2.linkPageHeading {
  color: var(--darkBlue);
  font-size: 1.75rem !important;
  font-weight: 700;
  text-transform: uppercase;
}

.linkPageTxtDetails h1.linkPageHeading {
  color: var(--darkBlue);
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.linkPageTxtDetails p a {
  color: var(--primaryColor);
}

.mapArea {
  width: 100%;
  margin: 1rem 0;
}

.mapArea img {
  width: 100%;
}

ul.bulletList {
  margin: 1rem 0 !important;
  list-style: disc !important;
  padding-left: 18px;
  color: var(--darkBlue);
  font-size: 1rem;
  font-weight: 500;
  text-align: justify;
}

/* link page text area code end  */

/*link pages commomn css end */

textarea {
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
  background: transparent;
  color: var(--darkBlue) !important;
  border: none !important;
  margin: 0rem 0 1.5rem 0;
  border-radius: 20px !important;
  font-size: 16px !important;
}

.icoRefresh {
  margin-top: 15px;
}

.customTab {
  display: none;
}

.customTab.show {
  display: block;
}

.carouselTabContainer .btnItem a {
  font-size: 1rem;
  font-weight: 500;
  border-radius: 50px;
}

.smallinput {
  width: 15px;
  border: 0px;
}

.tabTxt {
  font-size: 1.2rem;
  color: var(--darkBlue);
  font-weight: 600;
}

.pinkContainer {
  background: #fee8ed;
  padding: 50px 20px;
  border-radius: 20px;
  border: 1px solid #cb4829;
}

.identify .checkBoxNLbl input[type="checkbox"],
.radioBoxNLbl input[type="radio"] {
  width: 10px !important;
  height: 10px !important;
}

.pinkContainer hr {
  border: 1px solid #cb4829;
}

select {
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
  padding: 1rem;
  background: transparent;
  color: var(--darkBlue) !important;
  border: none !important;
  font-size: 16px;
  margin: 0rem 0 1.5rem 0;
  width: 100%;
  border-radius: 100px;
}

select option {
  background: #fff !important;
  border-radius: 100px !important;
  border: 0px !important;
}

select.customInput {
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
  padding: 1rem;
  background: transparent;
  color: var(--darkBlue) !important;
  border: none !important;
  font-size: 16px;
  margin: 0rem 0 1.5rem 0;
}

select.customInput option {
  border-radius: 15px !important;
}

div.form-control.rounded-pill.customInput {
  padding: 1rem;
  background: transparent;
  color: var(--darkBlue) !important;
  border: 1px solid #b0b0b0 !important;
  font-size: 16px;
  margin: 0rem 0 1.5rem 0;
}

.custom-select.form-control.rounded-pill.customInput {
  padding: 0px !important;
}

.custom-select {
  position: relative;
  /* font-family: Arial; */
}

span#select2-l42t-container {
  display: none;
}

span#select2-lg5s-container {
  display: none;
}

.custom-select select {
  display: none;
  /*hide original SELECT element:*/
}

.select-selected {
  background-color: white;
  text-align: start;
}

/*style the arrow inside the select element:*/

.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/*point the arrow upwards when the select box is open (active):*/

/* .select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
} */

/*style the items (options), including the selected item:*/
.options {
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
  padding: 1rem;
  background: transparent;
  color: var(--darkBlue) !important;
  border: #0000002e 1px solid !important;
  font-size: 14px;
  margin: 0.8rem 0 1.5rem 0;
  width: 84%;
  height: 24%;
  border-radius: 0px;
}

.select-items div,
.select-selected {
  color: var(--darkBlue);
  padding: 1.5rem;
  border: 1px solid #b0b0b0 important;
  border-color: #b0b0b0;
  cursor: pointer;
  user-select: none;
  border-radius: 20px;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

/*style items (options):*/

.select-items {
  position: absolute;
  background-color: white;
  top: 100%;
  left: -5px;
  right: 0;
  z-index: 99999;
  margin-top: 5px;
  text-align: start;
  width: 101% !important;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  border-radius: 20px;
}

/*hide the items when the select box is closed:*/

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: rgb(201, 201, 201);
}

.cartItemDetail span strong {
  color: var(--lightgreen);
}

.detailPrice {
  color: var(--lightCustomGrey);
}

.cartItemIncDec span strong {
  color: var(--primaryColor);
}

.cartItemIncDec span {
  font-size: 21px;
  font-weight: 400 !important;
  user-select: none;
}

.nav-pills .nav-link {
  color: var(--dark);
  border: 1px solid var(--primaryColor);
  border-top-right-radius: 50px solid transparent;
  border-bottom-left-radius: 50px solid transparent;
  position: relative;
  height: 44px;
  padding-left: 25px;
  outline-color: var(--primaryColor);
  margin: 0 5px;
  font-size: 0.9rem;
}

.nav-pills .nav-linkk {
  color: var(--dark);

  position: relative;
  height: 44px;
  padding-left: 30px;

  margin: 0 5px;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -3px;
  width: 0;
  height: 0;
  border-left: 25px solid var(--white);
  margin-right: 10px !important;

  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.nav-link:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0px;
  z-index: 2;
  width: 0;
  height: 0;
  border-color: var(--primaryColor);
  border-left: 22px solid var(--white);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

.nav-pills .nav-link.active,
.nav-pills .show&gt;.nav-link {
  background-color: var(--primaryColor);
  border: var(--primaryColor);
}

.nav-pills .nav-link.active,
.nav-pills .show&gt;.nav-linkk {
  background-color: var(--primaryColor);
  border: var(--primaryColor);
}

.nav-pills .nav-link.active:after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -3px;
  width: 0;
  height: 0;
  border-left: 25px solid var(--white);
  margin-right: 10px !important;

  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
}

.nav-pills .nav-linkk.active:after {
  content: "";
  position: absolute;
  left: -1px;
  bottom: -3px;
  width: 0;
  height: 0;

  margin-right: 10px !important;
}

.nav-pills .nav-link.active:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0px;
  z-index: 2;
  width: 0;
  height: 0;
  border-color: var(--primaryColor);
  border-left: 22px solid var(--primaryColor);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

.nav-pills .nav-linkk.active:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0px;
  z-index: 2;
  width: 0;
  height: 0;
}

.mesCommandes h5 {
  color: var(--royaleBlue);
  font-size: 1rem;
}

.tabFidelite span:nth-child(1) {
  color: var(--royaleBlue);
}

.tabFidelite span:nth-child(2) {
  color: var(--primaryColor);
}

.mesDetails a {
  color: var(--dark);
}

.extraList .minus {
  color: var(--primaryColor);
  order: 3;
  margin-left: auto;
}

.extraList .plus {
  order: 5;
}

.cartIcon img {
  width: 1.51vw;
}

.cartDrawerContainer.activeDrawer .validateBtnPrimary {
  /* position: fixed; */
  bottom: -11px;
  width: 38vw;
  margin-bottom: 10px;
  z-index: 111;
  padding: 0px 0px 0px 20px;
  margin-left: -109px;
  /* left: 1px; */
  background: white;
}

.cartDrawerContainer.activeDrawer .validateBtnPrimary {
  position: fixed;
  bottom: 1px;
  width: 49vw;
  /*! margin-bottom: 9px; */
  z-index: 111;
  /*! padding: 0px 13px 0px 20px; */
  /*! margin-left: -81px; */
  /* left: 1px; */
  background: white;
}

.customRadio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */

.customRadio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

.checkmark {
  position: absolute;
  top: 24px;
  left: 0;
  height: 30px;
  width: 30px;
  background: none;
  border-radius: 8px;
  border: 4px solid #27305a;
}

/* On mouse-over, add a grey background color */

.customRadio:hover input~.checkmark {
  background-color: #f9f9f9;
  color: var(--primaryColor) !important;
}

/* When the checkbox is checked, add a blue background */

.customRadio input:checked~.checkmark {
  background-color: #f9f9f9;
  border: 5px solid #cb4829;
  color: var(--primaryColor) !important;
}

.customRadio input:checked+label {
  background-color: #f9f9f9;
  border: 5px solid #cb4829;
  color: var(--primaryColor) !important;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
  content: "";
  position: absolute;
  color: var(--primaryColor);
  display: none;
}

/* Show the checkmark when checked */

.customRadio input:checked~.checkmark:after {
  display: block;
  color: var(--primaryColor) !important;
}

/* Style the checkmark/indicator */

.customRadio .checkmark::after {
  left: 8px;
  top: 3px;
  width: 7px;
  height: 13px;
  border: solid #cb4829;
  color: var(--primaryColor) !important;
  border-top-width: medium;
  border-right-width: medium;
  border-bottom-width: medium;
  border-left-width: medium;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

span.select2.select2-container.select2-container--default {
  display: none;
}

.customCheck {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */

.customCheck input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */

.checkmarkTwo {
  position: absolute;
  top: 25px;
  left: 0;
  height: 30px;
  width: 30px;
  background: none;
  border-radius: 100px;
  border: 5px solid #27305a;
}

/* On mouse-over, add a grey background color */

.customCheck:hover input~.checkmarkTwo {
  background-color: #f9f9f9;
}

/* When the checkbox is checked, add a blue background */

.customCheck input:checked~.checkmarkTwo {
  background-color: none;
  border: 5px solid #cb4829;
  color: var(--primaryColor);
}

.customCheck input:checked+label {
  background-color: none;
  border: 5px solid #cb4829;
  color: var(--primaryColor) !important;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmarkTwo:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */

.customCheck input:checked~.checkmarkTwo:after {
  display: block;
  color: var(--primaryColor);
}

/* Style the checkmark/indicator */

.customCheck .checkmarkTwo::after {
  left: 5px;
  top: 6px;
  width: 10px;
  height: 10px;
  /*! border: solid white; */
  /*! border-top-width: medium; */
  /*! border-right-width: medium; */
  /*! border-bottom-width: medium; */
  /*! border-left-width: medium; */
  /*! border-width: 0 3px 3px 0; */
  /*! -webkit-transform: rotate(45deg); */
  /*! -ms-transform: rotate(45deg); */
  /*! transform: rotate(45deg); */
  background: #cb4829 !important;
  border-radius: 100px;
}

.customCheck img {
  width: 100px;
}

.validationCom h6,
.validationCom p {
  text-align: left !important;
}

.validateBtn h5 {
  margin: 0 30px 0 30px;
}

.appliquerBtn {
  font-size: 0.7rem !important;
  padding: 0 10px 0 10px;
}

.confirmation h5 {
  color: var(--primaryColor);
  margin: 30px 0px;
}

.confirmation h6 {
  color: var(--primaryColor);
}

.confirmation input[type="radio"] {
  margin-right: 10px;
}

.confirmation span {
  color: #cb4829;
}

.confirmation h2 {
  color: var(--royaleBlue) !important;
}

.confirmation p strong {
  color: var(--fbColor) !important;
  line-height: 40px;
}

.tabTitle {
  margin: 10px 0 50px 0;
  font-weight: bold;
  text-align: center;
}

.votreFidelite {
  margin: 50px 0px;
}

.votreFidelite strong {
  color: var(--primaryColor);
}

.votreFidelite p {
  margin-top: 90px;
  text-align: left !important;
}

.prodImageContainer img.img-fluid.productBoxImage {
  /* background: url(../img/woodenPlate.png) center top no-repeat; */
}

.catProdImg img {
  width: 280px !important;
}

.detailsBtn {
  background-color: #D3D3D3;
  width: 80px;
  border-radius: 5px;
  font-size: 14px;
  line-height: 30px;
  text-align: center;
}

.detailsBtn a {
  color: var(--white);
}

.detailsBtn a:hover {
  text-decoration: underline;
  color: #000000;
}

.comDetailHead span {
  color: var(--darkblueMix);
  font-weight: 700;
}

p.comDetailHead.pt-3 {
  font-weight: 700;
}

.comDetailPrice span {
  color: var(--primaryColor);
}

.allergeneLinks a {
  color: var(--primaryColor);
  margin: 0 10px;
}

.allergeneLinks a:nth-child(1) {
  margin-left: 0px;
}

.allergeneLinks a:hover {
  color: var(--black);
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: none !important;
  border-color: inherit !important;
  border-style: none !important;
  padding: 10px;
}

tbody.CustomTableBorder,
td,
tfoot,
th,
thead,
tr {
  border-color: inherit !important;
  border-style: none !important;
  border: 1px solid #333;
  padding: 10px;
}

.zoneAreas ul li {
  line-height: 40px;
}

.zoneAreas ul li a {
  color: var(--navydarkblue) !important;
}

.zoneAreas ul li a:hover {
  color: var(--primaryColor);
}

.greyIcons img {
  filter: invert(50%);
}

.MonTabCart {
  left: -100px;
}

.cartHeadSmall {
  color: var(--primaryColor);
  font-size: 25px;
  font-weight: bold;
  margin-top: 30px;
  margin-left: 40px;
}

.fidliteVotre span {
  color: var(--primaryColor);
}

.BtnFull {
  width: 100%;
  /* background-color: var(--primaryColor); */
  background-color: #b3b3b3;
  border-radius: 5px;
  font-size: 15px;
  line-height: 30px;
  text-align: center;
}

.BtnFull a {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
}

.secTwo {
  background-color: #ff0;
  padding: 150px 0px;
  color: var(--darkBlue);

  margin-top: 258px;
}

.secTwo .BtnFull {
  border-radius: 20px;
  width: 59%;
  font-family: hwt-artz !important;
  font-size: 1.8rem;
  letter-spacing: 3px;
  text-align: center;
  height: 82px !important;
  background-color: var(--darkBlue);
  padding: 16px;
  margin: 30px auto;
  line-height: 50px !important;
}

.secTwo span {
  color: var(--primaryColor);
}

.secTwo h2 {
  font-family: hwt-artz !important;
  font-size: 2.8rem;
  letter-spacing: 1px;
}

.secThree {
  padding-top: 50px;
  font-family: hwt-artz !important;
  font-size: 18px;
  letter-spacing: 1px;
  position: relative;
}

.secThree h2 {
  color: var(--primaryColor);
  font-family: hwt-artz !important;
  font-size: 2.8rem;
  letter-spacing: 1px;
  padding-top: 50px;
}

.secThree {
  color: var(--darkBlue);
}

img.vert-move {
  -webkit-animation: mover 0.2s infinite alternate;
  animation: mover 0.2s infinite alternate;
}

img.vert-move {
  -webkit-animation: mover 0.2s infinite alternate;
  animation: mover 0.2s infinite alternate;
}

/*updates 01-06-22*/
.supp-color {
  color: var(--lightgreen) !important;
}

.prodPrice {
  color: var(--navydarkblue);
}

.prodTitle {
  font-family: knockoutLiteweight sans serif bold;
}

h6.linkPageHeading.ouertTxt.mt-3 {
  text-align: right;
  font-weight: 600;
}

.custom-btn {
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 20px;
}

.paraPromo {
  color: var(--twitterColor);
  opacity: 70%;
}

.customReciptClass {
  font-weight: 600;
}

.customTotalClass {
  color: var(--primaryColor);
  font-weight: 600;
  font-size: 20px;
  padding: auto;
  margin: auto;
}

.cartTitleMon {
  color: var(--primaryColor);
  font-weight: 600;
  text-align: center;
  font-size: 40px;
  margin: 30px;
}

.container-fluid {
  /*! margin: 30px; */
}

.customcolorr {
  color: var(--fbColor) !important;
}

.rating {
  unicode-bidi: bidi-override;
  direction: rtl;
}

.rating&gt;span {
  display: inline-block;
  position: relative;
  width: 1.1em;
}

.rating&gt;span:hover:before,
.rating&gt;span:hover~span:before {
  content: "\2605";
  position: absolute;
  color: rgb(231, 231, 130);
  boder-color: black;
}

.rightNavItems {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.radioclass {
  background-color: var(--white);
  border-color: var(--fadeBlack);
}

.radioclass:checked {
  background-color: var(--primaryColor) !important;
  border: var(--white);
}

.customSize {
  font-size: 55px;
  text-align: left;
  line-break: 1;
}

.col-lg-6.col-12.my-auto {
  position: relative;
  bottom: 96px;
}

.fa {
  font-size: 25px;
}

.checked {
  color: orange;
}

.ShadowContainerBox {
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 1px 1px 6px 5px rgb(45 67 85 / 15%);
  width: 74%;
  height: 249px;
  font-weight: 600;
  font-size: 17px !important;
  margin: 4rem rem 0;
}

.totalPriceBorder {
  border-top: #00000021 1px solid;
}

@-webkit-keyframes mover {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-5px);
  }

  75% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-5px);
  }

  75% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.vert-move {
  margin-left: 160px;
  position: absolute;
  bottom: 0px;
}

.talkCloud {
  font-size: 25px;
  position: relative;
  left: 373px;
  top: 125px;
  z-index: 1;
}

.talkCloud .contNo {
  -webkit-animation: Contmover 0.2s infinite alternate;
  animation: mover 0.2s infinite alternate;
}

.talkCloud.contNo {
  -webkit-animation: mover 0.2s infinite alternate;
  animation: mover 0.2s infinite alternate;
}

@-webkit-keyframes Contmover {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-5px);
  }

  75% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes Contmover {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-5px);
  }

  75% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(-10px);
  }
}

.cubes {
  position: absolute;
  width: 23%;
  left: 29%;
  top: -69%;
  transform: scale(1.6);
}

img.cubes {
  -webkit-animation: cubesMover 1s infinite alternate;
  animation: cubesMover 1s infinite alternate;
}

img.cubes {
  -webkit-animation: cubesMover 1s infinite alternate;
  animation: cubesMover 1s infinite alternate;
}

@-webkit-keyframes cubesMover {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-5px);
  }

  75% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@keyframes cubesMover {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-5px);
  }

  75% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(-10px);
  }
}

@media only screen and (max-width: 1200px) {
  .cubes {
    position: relative;
    left: 38%;
    width: 28%;
    top: -48%;
  }
}

@media only screen and (max-width: 991px) {
  .secTwo .BtnFull {
    width: 80%;
    font-size: 18px;
    letter-spacing: 0px;
  }

  .cubes {
    left: 40%;
  }

  .vert-move {
    margin-left: 80px;
  }

  .talkCloud {
    left: 295px;
  }
}

.videoSec {
  padding: 50px 20px 80px 20px;
}

.videoSec video {
  border-radius: 30px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.35);
  -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.35);
}

.inputSmall {
  font-size: 13px !important;
  margin: 0rem 0 0.4rem 0 !important;
}

.ouertTxt {
  color: var(--darkGreen) !important;
}

.mapLeftDetails {
  position: absolute;
  top: 62px;
  left: 0px;
  box-shadow: 0px 1px 18px 3px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0px 1px 18px 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 1px 18px 3px rgba(0, 0, 0, 0.3);
}

.prodSideIng img {
  width: 100px;
}

.burgerOffer {
  position: absolute !important;
  width: 100%;
  height: 78%;
  padding: 0px;
  z-index: 1;
  transform: scale(3.2);
  margin: -23px 41px;
}

.burgerOfferDiv {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.5%;
}

@media only screen and (max-width: 1460px) {
  .burgerOffer {
    transform: scale(2.2);
    /* margin: -83px; */
    width: 80%;
    left: 7%;
  }

  .secTwo {
    margin-top: 210px;
  }
}

@media only screen and (min-width: 1900px) {
  .cubes {
    position: absolute;
    width: 17%;
    left: 43%;
    top: -75%;
    transform: scale(1.6);
  }
}

@media only screen and (max-width: 1300px) {
  .burgerOffer {
    transform: scale(2.2);
    /* margin: -83px; */
    width: 80%;
    left: 7%;
  }

  .customSize {
    font-size: 55px;
    text-align: left;
    line-break: 1;
    margin: 64px 31px 0px 0px;
  }

  .secTwo .BtnFull {
    font-size: 1.5rem;
    letter-spacing: 0px;
    margin: 0px 0px 0px 191px;
  }

  .secTwo h2 {
    font-size: 2.8rem;
  }

  .secTwo {
    padding: 50px 0px;
  }

  .secTwo br {
    display: none;
  }

  .secThree h2 {
    padding-top: 0px !important;
  }
}

@media only screen and (max-width: 990px) {
  .burgerOffer {
    position: absolute;
  }

  .burgerOffer {
    position: absolute;
    width: 100%;
  }

  .secTwo {
    margin-top: 50px;
  }

  .vert-move {
    right: 0px;
  }

  .mobile {
    position: relative;
    left: -150px;
  }
}

.sliderHeading {
  position: relative;
  top: 107px;
  z-index: 1;
  text-align: center;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 3rem;
  color: #000;

  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.sliderHeading span {
  color: var(--primaryColor);
  display: inline-block;
  text-decoration: underline;
  text-decoration-style: dotted;
}

.glow {
  color: var(--primaryColor) !important;
  text-align: center;
}

@-webkit-keyframes glow {
  from {
    text-shadow: 0 0 10px #cb4829, 0 0 20px #cb4829, 0 0 30px #fff,
      0 0 40px #fff, 0 0 50px #fff, 0 0 60px #fff, 0 0 70px #fff;
  }

  to {
    text-shadow: 0 0 20px #cb4829, 0 0 30px #cb4829, 0 0 40px #fff,
      0 0 50px #fff, 0 0 60px #fff;
  }
}

.span.img-wrap {
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
}

.PizzaCustomAnimation {
  color: #000;
  position: relative;
  font-size: 40px;
  top: -6%;
  left: 49%;
}

.PizzaPrice {
  color: var(--primaryColor);
  font-weight: 700;
  /* position: fixed; */
  /* right: 41%; */
  /* bottom: 33%; */
  width: 75px;
  line-height: 34px;
  font-size: 42px;
}

p.pizzaName {
  font-weight: 700;
  /* position: fixed; */
  /* top: 59%; */
  line-height: 34px;
  width: 20px;
  text-align: right;
  /* left: 42%;*/
}

.arrow-img {
  width: 6%;
  height: 10%;
  /* color: aqua; */
  position: fixed;
  left: 44%;
  opacity: 69%;
  bottom: 38%;
  transform: rotate(303deg);
}

.ImageCustomClass {
  max-width: 100%;
  height: auto;
  color: #000;
  position: relative;
  left: -5%;
  z-index: 1;
  bottom: 29px;
  transform: scaleX(-1);
}

.customColorClass {
  color: var(--darkBlue);
}

.customColorClass p {
  color: var(--darkBlue);
}

.timeHighLight {
  color: var(--primaryColor);
}

.timeHighLight p {
  color: var(--primaryColor);
}

.CustomCartImage {
  z-index: 0;
  position: absolute;
  left: -5%;
  top: 9%;
}

.CustomCartImagee {
  z-index: 0;
  transform: translate(-77px, 10px);
  /* margin-top: 15px;*/
  width: 27%;
}

.CustomCartText {
  font-weight: 700;
  width: fit-content;
  border-radius: 5%;
  font-size: 2px;
  height: max-content;
  box-shadow: 1px 1px 6px 5px rgb(45 67 85 / 15%);
  margin: 0rem 2rem 2rem 4rem;
  padding: 3% 2% 2% 9%;
}

.CustomCartTextt {
  font-weight: 700;
  width: 89%;
  font-size: 15px;
  height: auto;
  border-radius: 3%;
  box-shadow: 1px 1px 6px 5px rgb(45 67 85 / 15%);
  margin: 0rem 2rem 2rem 3rem;
}

.ImageBurgerCustom {
  width: 100%;
  height: 100%;
}

.CustomTabClass {
  /*! padding: 20px 30px; */
}

.ProductTitleCustom {
  text-align: left;
  font-size: 18px;
  color: var(--navydarkblue);
  font-weight: 700;
}

.CustomExtraImage {
  width: 100px;
  border: 1px solid palevioletred;
  border-radius: 33%;
  display: inline-block;
}

.CustomExtraImagee {
  width: 68px;
  height: 62px;
  margin: -12px;
}

.CustomExtraText {
  margin: 6px;
  display: inline-block;
  text-align: center;
}

.CustomExtraButton {
  padding: 8px;
  border: 1px solid var(--lightgreen);
  background-color: var(--white);
  height: 59px;
  display: inline-block;
  text-align: center;
  border-radius: 18px;
  width: max-content;
}

button.CustomExtraButton::before {
  content: image-set("img/check-circle-fill.svg" 1x);
  font-size: 2rem;
  display: inline-table;
  position: absolute;
  left: -8%;
  top: 8%;
  color: rgba(255, 144, 0, 1);
}

.CustomClassVotre {
  font-size: 16px;
  padding: 0;
  color: var(--navydarkblue);
}

.formShadowContainer2 {
  border-radius: 20px;
  padding: 2rem;
  font-weight: 700;
  /* position: absolute; */
  color: var(--darkblue) !important;
  /* width: max-content; */
  font-size: 10px;
  box-shadow: 1px 1px 6px 5px rgb(45 67 85 / 15%);
  margin: 0rem auto;
}

.row.prodSideIngg {
  width: 500px !important;
}

.prodImageShadeBox.active {
  background: var(--primaryColor) !important;
  color: var(--white) !important;
  opacity: 1;
}

.ProductPizzaImage {
  width: 110px;
  height: 110px;
  padding: 0px;
  margin: 0px 2px 2px 16px;
  align-items: center;
}

.PizzaPic {
  padding: 0px;
}

.CustomColorPizza {
  color: var(--primaryColor) !important;
  font-size: 1vw !important;
}

.ColorClassMenu {
  color: var(--navydarkblue) !important;
}

#CustomButtonsPizza {
  transform: translate(-38px, 3px);
}

@media (min-width: 992px) {
  .paddingClass {
    padding-right: 0rem !important;

    padding-left: 2.5rem !important;
  }
}

.CustomMapMsgBox {
  width: 250px;
  height: 100px;
  background-color: white;
  bottom: 430px;
  border-radius: 10px !important;
  font-size: 10px;
  text-align: center !important;
  left: 548px;
  top: 183px;
  color: var(--navydarkblue);
  border: var(--primaryColor) solid 1px;
}

.CustomMapMsgBoxx {
  width: 350px;
  height: 100px;
  background-color: white;
  bottom: 430px;
  border-radius: 10px !important;
  font-size: 10px;
  text-align: center !important;
  left: 420px;
  top: 266px;
  color: var(--navydarkblue);
  border: var(--primaryColor) solid 1px;
}

.CustomMapMsgBox:after {
  content: " ";
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid var(--primaryColor);
  border-right: 11px solid var(--primaryColor);
  border-left: 10px solid transparent;
  position: absolute;
  outline-offset: 1px;
  right: 94%;
  top: 93%;
  transform: rotate(209deg);
}

.CustomMapMsgBox:before {
  content: " ";
  width: 0px;
  height: 0px;
  border-top: 11px solid transparent;
  border-bottom: 6px solid white;
  border-right: 14px solid white;
  border-left: 10px solid transparent;
  position: absolute;
  z-index: 1;
  outline-offset: 1px;
  right: 92%;
  top: 93%;
  transform: rotate(206deg);
}

.CustomMapMsgBoxx:after {
  content: " ";
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid var(--primaryColor);
  border-right: 11px solid var(--primaryColor);
  border-left: 10px solid transparent;
  position: absolute;
  outline-offset: 1px;
  right: 96%;
  top: 93%;
  transform: rotate(209deg);
}

.CustomMapMsgBoxx:before {
  content: " ";
  width: 0px;
  height: 0px;
  border-top: 11px solid transparent;
  border-bottom: 6px solid white;
  border-right: 14px solid white;
  border-left: 10px solid transparent;
  position: absolute;
  z-index: 1;
  outline-offset: 1px;
  right: 94%;
  top: 93%;
  transform: rotate(206deg);
}

h4.TextMsgBox {
  font-size: 15px;
  font-weight: 800;
}

p.textMsgBox {
  font-size: 15px;
  text-align: center;
  padding: 0px;
  margin: 0px;
}

img.icon {
  width: 46px;
  height: 32px;
  margin: 8px 2px 6px 112px;
  padding: 0px;
}

.CustomIconMsgBox {
  font-size: 10px;
  width: 20px;
  line-break: none;
}

ul#extraIngredients {
  width: 100%;
  align-items: center;
  border: none;
  position: relative;
  z-index: 5;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-y: hidden;
  overflow-x: scroll;
}

ul#extraIngredients {
  width: 100%;
  align-items: center;
  border: none;
  position: relative;
  z-index: 5;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-y: hidden;
  overflow-x: scroll;
}

/* width */
ul#extraIngredients::-webkit-scrollbar {
  width: 1px;
}

/* Track */
ul#extraIngredients::-webkit-scrollbar-track {
  background: var(--white);
}

/* Handle */
ul#extraIngredients::-webkit-scrollbar-thumb {
  background: var(--white);
}

/* Handle on hover */
ul#extraIngredients::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

ul#extraIngredients button.nav-link {
  color: var(--darkBlue);
  font-weight: 500;
  font-size: 1rem;
  margin: 0.5rem 0.5rem;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--darkBlue);
  transition: all linear 0.3s;
}

ul#extraIngredients button.nav-link.active {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--white);
}

ul#extraIngredients button.nav-link:after {
  content: " " !important;
  border: none;
}

ul#extraIngredients button.nav-link:before {
  content: " " !important;
  border: none;
}

.formShadowContainer.aos-init.aos-animate {
  font-size: 15px;
}

.BodaySectionTwo {
  overflow: scroll;
  height: 400px;
}

.HeaderSection {
  height: 50px !important;
}

.CustomHeaderSection {
  border-bottom: 1px solid var(--lightGray);
  margin-bottom: 1rem;
  width: 80%;
  margin: 14px 0px 7px 19px;
}

.CustomHeaderSection h3.HeadingTwo {
  color: var(--primaryColor) !important;
  font-weight: 600;
  font-size: 1.7rem;
}

.BodaySectionTwo h4 {
  font-weight: 700;
  padding: 0rem 2rem 0rem 1.2rem;
}

.BodaySectionTwo p {
  padding: 0rem 2rem 0rem 1.2rem;
}

.BodaySectionTwo {
  margin: 2rem 0rem 0rem 0rem;
}

.CustomList li {
  margin: 0rem 0rem 0rem 0.3rem;
  color: var(--black);
}

.CustomList li label {
  margin: 0rem 0rem 0rem 0.3rem;
  font-size: 18px !important;
  font-weight: 500;
}

.CustomList li label img {
  width: 86px;
}

.CustomList li label span {
  width: 25px !important;
  height: 25px !important;
}

.CustomList li label span::after {
  left: 5px !important;
  top: 2px !important;
  width: 7px !important;
  height: 10px !important;
}

.footerSection h2 {
  font-size: 1.3rem !important;
  font-weight: 600;
}

.footerSection .ButtonClass {
  background-color: var(--primaryColor) !important;
  color: var(--white) !important;
  width: 130px !important;
  height: 50px;
  padding: 10px;
  margin: 4vh 0vh 0vh 19vh !important;
  font-size: 18px;
  border-radius: 13px !important;
  font-weight: 600;
}

.customNewDesign span {
  vertical-align: middle;
  font-size: 20px;
  padding: 10px 0px 10px 1px;
  vertical-align: sub;
  color: #eec439 !important;
  font-weight: 600;
}

.customNewDesign img {
  width: 70px;
  vertical-align: middle;
  height: 70px;
}

.customNewDesign {
  color: var(--lightGreen);
  display: inline-block;
  position: inherit;
  right: 80px;
}

img.leaflet-marker-icon.leaflet-zoom-animated.leaflet-interactive {
  width: 27px !important;
  height: 41px !important;
}

.userIcon2::before {
  content: "";
  width: 10px;
  height: 10px;
  /*background: var(--green);*/
  padding: 0px 0px;
  border-radius: 110%;
  transform: scale(1);
  display: block;
  position: absolute;
  left: 15px;
  top: -3px;
}

.userIcon::before {
  content: "";
  width: 0.521vw;
  height: 0.521vw;
  background: var(--green);
  padding: 0px 0px;
  border-radius: 110%;
  transform: scale(1);
  display: block;
  position: absolute;
  left: 1.7vw;
  top: -0.3vw;
}

.productMainPrice strike {
  font-size: 1rem;
  color: #27305ab0;
  padding-right: 10px;
}

.tabForm .userFormContainer {
  text-align: left !important;
}

.tabForm label {
  padding-left: 20px;
}

.cartDrawerContainer,
.entryDrawerContainer {
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.2) !important;
  width: 660px;
  background: var(--white);
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  /*! border: #0000006e 1px groove; */
  position: fixed;
  top: 19px;
  right: 28px;
  transition: all linear 0.3s;
  z-index: 111;
  transform: translateY(-150%);
  padding: 15px 10px;
}

.entryDrawerContainer {
  width: 320px !important;
}

.cartDrawerContainer.activeDrawer {
  transform: translateY(7%) !important;
}

.entryDrawerContainer.activeDrawer {
  transform: translateY(31%) !important;
}

.cartDrawerContainer .cartItemRow,
.entryDrawerContainer .cartItemRow {
  width: 97%;
  float: right;
}

.cartDrawerContainer .prodCartImg,
.entryDrawerContainer .prodCartImg {
  left: -50px;
}

.bonjourTxt {
  /* position: absolute; */
  /* right: -28px; */
  /* bottom: -110px; */
  /* border: 1px solid lightgray; */
  width: 16rem;
  /* margin: -37px 34px; */
  border-radius: 10px;
  letter-spacing: 0.4px;
  /* display: none; */
  background-color: var(--white);
}

.bonjourTxt h4 {
  font-weight: 600;
  color: var(--darkBlue);
  font-size: 1.2vw;
  text-align: center;
}

.bonjourTxt h4,
.bonjourTxt h3 {
  text-transform: none;
  line-height: 2;
}

.bonjourTxt h3 {
  font-size: 1.1rem;
  text-align: left;
  margin-left: 15px;
  display: flex;
  align-items: center;
  font-weight: 400;
  cursor: pointer;
  /* display: none; */
  color: var(--darkBlue);
}

.bonjourSubHeading img {
  width: 22px;
  margin-right: 7px;
  /*! filter: invert(100); */
}

button.closeBtn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.entryTitleAndCloseBtn {
  background: var(--white);
  float: right;
}

.prodTypShowBtn svg path {
  fill: var(--white) !important;
}

.prodTypShowBtn svg circle {
  fill: var(--primaryColor) !important;
}

.prodTypShowBtn svg circle:hover {
  fill: var(--bs-gray-700) !important;
}

.directAddToCart svg path {
  fill: var(--white) !important;
}

.directAddToCart svg circle {
  fill: var(--primaryColor) !important;
}

.directAddToCart svg circle:hover {
  fill: var(--bs-gray-700) !important;
}

.AddIcon svg path {
  fill: var(--white) !important;
}

.AddIcon svg circle {
  fill: var(--primaryColor) !important;
}

.AddIcon svg circle:hover {
  fill: var(--bs-gray-700) !important;
}

.secondList a img {
  width: 8vw !important;
}

.secondList a {
  display: flex;
  flex-direction: column;
}

.thirdList a img {
  width: 5vw !important;
}

.shadowBoxx .input-groupp .form-control {
  width: 80% !important;
}

.dayActive {
  color: var(--primaryColor) !important;
}

.closeProdTypeBtn svg path {
  fill: var(--white) !important;
}

.closeProdTypeBtn svg circle {
  fill: var(--bs-gray-700);
}

.closeProdTypeBtn svg circle:hover {
  fill: var(--primaryColor) !important;
}

#accompprod0 font,
#accompprod1 font,
#accompprod2 font,
#accompprod3 font,
#accompprod4 font,
#accompprod5 font,
#accompprod6 font,
#accompprod7 font,
#accompprod8 font,
#accompprod9 font,
#accompprod10 font {
  color: var(--darkBlue) !important;
}

#zonePage .btnSliders .owl-dots {
  display: none;
}

#zonePage .btnSliders .owl-dots:nth-child(3) {
  display: block !important;
}

.leaflet-popup-pane p {
  color: #000;
}

.leaflet-popup-content p b {
  color: var(--black) !important;
}

#zoneRechargement .prodImagWithIngContainer .order-0 {
  display: none !important;
}

#zoneRechargement .linkPageTxtDetails .mx-xxl-5 {
  display: flex;
  justify-content: space-around;
}

h5.modal-title {
  color: var(--primaryColor);
}

.formShadowContainer table {
  color: var(--black) !important;
}

.formShadowContainer table td span {
  color: var(--black) !important;
}

.ui-datepicker-header .ui-datepicker-title {
  color: var(--black) !important;
}

ul[style="width:700px !Important;"] {
  padding-right: 100px !important;
}

.userFormContainer div.form-control.rounded-pill.customInput {
  height: 60px;
}

.select-items div,
.select-selected {
  /* margin-top: 3px; */
  background: none;
}

.formShadowContainer table td font[color="#fff"] {
  color: #000;
}

.formShadowContainer a.click-app {
  color: var(--primaryColor);
}

#mainContentBox&gt;div.linkPageContainer&gt;div&gt;div&gt;div&gt;p:nth-child(4) {
  color: #000 !important;
}

.cartDrawerContainer button.btn.validateBtn {
  width: 500px !important;
  margin: 8px 53px 7px 140px !important;
}

.CustomColorPizza ul li {
  width: 60%;
}

.prodImagWithIngContainer [data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  transform: none !important;
}

.prodImagWithIngContainer [data-aos="zoom-in-up"] {
  transform: none !important;
}

input[type="date"] {
  color-scheme: var(--black);
}

.sideBarContainer::-webkit-scrollbar {
  display: none;
}

.formShadowContainer a {
  color: var(--primaryColor);
}

.formShadowContainer a:hover {
  color: var(--black);
}

/* hero section start */
.hs-container {
  background: url(../img/hs-bg.png) center center no-repeat;
  background-size: cover;
  margin-top: 5.7vw;
}

.hs-container .txt-container {
  transform: rotate(-3deg);
  position: relative;
  right: -6vw;
}

.hs-container .heading-container {
  margin-bottom: 2vw;
}

.hs-container .heading-container h1 {
  font-family: "MasterPlane";
  font-size: 8.5vw;
  line-height: 8.5vw;
}

.hs-container .heading-container h1 span {
  color: var(--primaryColor);
}

.hs-container .btn-container {}

.hs-container .btn-container a {
  color: var(--white);
  background: var(--black);
  font-family: "MasterPlane";
  border-radius: 75px;
  padding: 0.8vw 4vw;
  font-size: 5.2vw;
  /* transition: all 0.1s ease-in-out; */
}

.hs-container .btn-container a:hover {
  background: radial-gradient(circle,
      rgba(203, 72, 41, 1) 0%,
      rgba(0, 0, 0, 1) 100%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.hs-container .img-container {}

.hs-container .img-container a {}

.hs-container .img-container a img {}

/* hero section end */

/* two section start */

.ts-container {
  background: url(../img/ts-bg.png) center center no-repeat;
  background-size: cover;
}

.ts-container .txt-container {
  transform: rotate(-3deg);
  position: relative;
  /* right: -6vw; */
}

.ts-container .heading-container {
  margin-bottom: 1vw;
}

.ts-container .heading-container h1 {
  font-family: "MasterPlane";
  font-size: 7.5vw;
  line-height: 7.5vw;
}

.ts-container .heading-container h1 .span1 {
  color: var(--primaryColor);
}

.ts-container .heading-container h1 .span2 {
  color: var(--black);
  font-size: 18vw;
  letter-spacing: 5vw;
  margin-top: 4vw;
  display: inline-block;
}

.ts-container .btn-container {}

.ts-container .btn-container a {
  color: var(--white);
  background: var(--primaryColor);
  font-family: "MasterPlane";
  border-radius: 75px;
  padding: 0.8vw 4vw;
  font-size: 4.6vw;
}

.ts-container .btn-container a:hover {
  background: radial-gradient(circle,
      rgba(203, 72, 41, 1) 0%,
      rgba(0, 0, 0, 1) 100%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.ts-container .img-container {
  display: flex;
  justify-content: center;
}

.ts-container .img-container a {}

.ts-container .img-container a img {}

/* two section end */

/* three section start */
.trs-section {
  background: url(../img/trs-bg.png) center center no-repeat;
  background-size: cover;
  padding: 4.5vw 0px 5vw 0px;
}

.trs-section .top-heading {
  margin-bottom: 9vw;
}

.trs-section .top-heading h1 {
  text-align: center;
  transform: rotate(-7deg);
}

.trs-section .top-heading h1 .span1 {
  font-family: "MasterPlane";
  background: var(--primaryColor);
  color: var(--white);
  font-size: 8.5vw;
  padding: 1.7vw 4.5vw;
  border-radius: 1.65vw;
}

.trs-section .top-heading h1 .span2 {
  font-family: "MervaleScriptR";
  text-transform: capitalize;
  font-size: 9.5vw;
  bottom: -5vw;
  position: relative;
  left: -2vw;
}

.trs-section .custom-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trs-section .custom-card .img-container {}

.trs-section .custom-card .img-container img {
  transition: transform 0.1s ease-in-out;
}

.trs-section .custom-card .img-container img:hover {
  transform: rotate(10deg);
}

.trs-section .custom-card .txt-container {
  margin-top: -7.1vw;
}

.trs-section .custom-card .txt-container h1 {
  font-family: "MervaleScriptR";
  color: var(--white);
  text-transform: uppercase;
  transform: rotate(-7deg);
  font-size: 3vw;
  line-height: 3.5vw;
}

.trs-section .custom-card .txt-container h1 span {
  font-family: "MasterPlane";
  color: var(--primaryColor);
  font-size: 5.5vw;
  letter-spacing: 0.3vw;
  position: relative;
  display: inline-block;
  padding: 0.5vw;
  left: -1vw;
}

.trs-section .custom-card .txt-container h1 span::before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--white);
  transform: skew(-10deg);
  position: absolute;
  z-index: -1;
  top: -0.1vw;
  left: -0.1vw;
}

/* three section end */

/* four section start */
.frs-container {
  background: url(../img/frs-bg.png) center center no-repeat;
  background-size: cover;
}

.frs-container .top-heading {}

.frs-container .top-heading h1 {
  font-family: "MasterPlane";
  text-align: center;
  font-size: 12vw;
  font-weight: unset;
}

.frs-container .top-heading h1 span {
  color: var(--primaryColor);
}

.frs-container .sandwichSection .custom-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 37vw;
}

.frs-container .sandwichSection.left-section .custom-card {
  background: url(../img/frs-pic-left-bg.png) center center no-repeat;
  background-size: cover;
}

.frs-container .sandwichSection.right-section .custom-card {
  background: url(../img/frs-pic-right-bg.png) center center no-repeat;
  background-size: cover;
}

.frs-container .sandwichSection .custom-card .img-container {
  margin: -10.5vw 0px -3.5vw 0px;
}

.frs-container .sandwichSection .custom-card .img-container img {}

.frs-container .sandwichSection .custom-card .txt-container h1 {
  font-family: "MasterPlane";
  color: var(--white);
  font-size: 6.5vw;
  line-height: 5.5vw;
}

/* four section end */

/* five section start */
.fs-container {
  background: url(../img/fs-bg.png) center center no-repeat;
  background-size: cover;
  padding: 40px 0;
}

.fs-container .txt-container {
  transform: rotate(3deg);
  position: relative;
  /* right: -6vw; */
}

.fs-container .heading-container {
  margin-bottom: 1vw;
}

.fs-container .heading-container h1 {
  font-family: "MasterPlane";
  font-size: 7.5vw;
  line-height: 7.5vw;
}

.fs-container .heading-container h1 span {
  color: var(--primaryColor);
}

.fs-container .btn-container {}

.fs-container .btn-container a {
  color: var(--white);
  background: var(--black);
  font-family: "MasterPlane";
  border-radius: 75px;
  padding: 0.8vw 4vw;
  font-size: 4.6vw;
}

.fs-container .btn-container a:hover {


  background: radial-gradient(circle,
      rgba(203, 72, 41, 1) 0%,
      rgba(0, 0, 0, 1) 100%);
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.fs-container .img-container {
  display: flex;
  /* justify-content: center; */
  text-align: end;
}

img[src="./img/fs-pic.png"] {
  width: 90%;
}

.fs-container .img-container a img {
  transition: transform 0.1s ease-in-out;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 5vw !important;
  border-radius: 30px !important;
  background: var(--white) !important;
}

.swiper-pagination-bullet {
  width: 3vw !important;
  border-radius: 30px !important;
  background: var(--white) !important;
  opacity: 1 !important;
}

.swiper {
  position: relative !important;
}

.swiper .swiper-pagination {
  bottom: 2vw !important;
}

/* five section end */
a.userIcon2 svg path {
  fill: #000;
}

.comm-btn {
  background: none;
  border: none;
}

#captcha {
  filter: invert(1);
}

.mesDetails a {
  color: var(--primaryColor)
}

.cartPageContainer .formShadowContainer p {
  color: var(--black);
}
/* 
#extraIngredientsContent input {
  order: 4
} */

.prodBoxAndOffersContainer .poductSizesSimple ul {
  width: 90%
}

#cartDrawer2 a {
  color: var(--primaryColor);
}

.footer .row .col-md-3:nth-child(3) a img {
  width: 150px;


}

#accompprod ul {
  text-align: start;
}

@media screen and (max-width:1500px) {
  .footer h2 {
    font-size: 2.7rem !important;
  }

  footer.footer .leftText h2 {
    font-size: 2.7rem !important;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.cst-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  padding: 1.5vw 0;
}

.commander-top-link-container {
  width: 95%;
  height: 3.5vw;
  margin: auto;
  background: url(../img/tacos-box-bg.png) no-repeat center center;
  background-size: cover;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.commander-top-link-container p {
  margin: 0;
  color: black;
  font-size: 1.1vw;
  line-height: 1.1vw;
  font-weight: 500;
}

.cst-flex .commander-top-link-container img[src="img/tacos.png"] {
  width: 4.5vw;
  position: relative;
  top: 50%;
  transform: translateY(-46%);
}

.cst-flex .commander-top-link-container img[src="img/tacos-box.png"] {
  width: 4.5vw;
  position: relative;
  top: 50%;
  transform: translateY(-39%);
}

.customProductContainer .extraSpecialIng #extraIngredientsContent .customTab ul.extraList .quantSelContainer input {
  order: 4;
}</pre></body></html>