@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&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@700&display=swap");
@font-face {
  font-family: bebas;
  src: url(../fonts/Bebas-Regular.ttf);
}

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

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

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

@font-face {
  font-family: arial-rounded;
  src: url(../fonts/ARLRDBD.TTF);
}

@font-face {
  font-family: AlFresco;
  src: url(../fonts/MTD-AlFresco.otf);
}
@font-face {
  font-family: Oswald-Regular;
  src: url(../fonts/Oswald-Regular.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 {
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --greyColor: #121618;
  --primaryColor: #e40000;
  --secondryColor: #33ab00;
}

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

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

/* Track */

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

/* Handle */

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

/* Handle on hover */

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

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--whiteColor);
  font-weight: normal !important;
}

.hideOverFlow {
  overflow: hidden !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Oswald-Regular !important;
  font-weight: normal;
  text-transform: uppercase;
}

ul {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

.form-control {
  background-color: var(--lightCustomGrey);
  color: var(--whiteColor) !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(--greyColor) !important; */
  box-shadow: 0 0 0 0.12rem var(--whiteColor) !important;
  color: var(--whiteColor);
}

.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(--greyColor);
  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(--whiteColor);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.noScroll {
  overflow: hidden !important;
}

/* side bar code start  */

.sideBarContainer {
  background: var(--whiteColor);
  width: 30%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  border: var(--fadewhiteColor);
  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: 250px;
}

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;
  color: var(--bs-gray-600);
}

.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;
  cursor: pointer;
  color: var(--blackColor) !important;
}

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

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;
  color: var(--whiteColor);
  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(--greyColor);
  padding: 1rem 0;
  display: block;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
}

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

.centerNavLink {
  flex: 1;
  color: var(--whiteColor);
}

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

.brandContainer {
  flex: 1;
}

.centerNavLink ul li a {
  margin: 0 10px;
  cursor: pointer;
  /*! color: #fff !important; */
}

nav.mainNav a {
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--darkBlue);
  transition: all linear 0.3s;
  position: relative;
}

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

.centerNavLink ul li {
  position: relative;
}

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

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

a.navTel {
  position: relative;
}

a.navTel img {
  width: 25px;
  transform: rotate(-15deg);
}

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

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

ul.navSideIcons {
  display: flex;
  margin: 0 0 0 30px !important;
  padding: 0;
  align-items: center;
}

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

button.btn.cartBtn span.cartCounterIcon {
  position: absolute;
  top: -17px;
  left: 22px;
}

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

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

.brandContainer a {
  /*! display: block; */
  width: fit-content;
}

img.logoImg {
  width: 150px;
}

a.userIcon svg {
  width: 26px;
}

a.userIcon2 svg {
  width: 26px;
}

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

.hamBurgerIcon {
  position: relative;
}

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

.hamBurgerIcon button#menuBtn span {
  width: 30px;
  height: 4px;
  background: var(--whiteColor);
  display: block;
  border-radius: 50px;
}

.hamBurgerIcon button#menuBtn span:nth-child(2) {
  margin: 0.5rem 0;
  width: 40px;
}

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 30px 1px rgba(0, 0, 0, 0.45);
  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%);
}

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

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

.cartTitleAndCloseBtn h3 {
  margin: 0;
  color: var(--whiteColor);
  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(--whiteColor) !important;
}

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

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

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

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

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(--greyColor);
  border: 1px solid var(--greyColor);
  border-radius: 5px;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
  padding: 0.5rem;
}

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

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(--whiteColor);
  font-size: 18px;
  width: 100%;
}

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

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

.cartItemDetail {
  font-size: 10px;
}

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

.cartItemIncDec {
  margin: 0.5rem 0;
}

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

.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;
  color: var(--whiteColor);
}

.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: var(--greyColor);
  margin: 1rem 0;
}

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

.input-group {
  position: relative;
  display: flex;
  /* background: blue; */
  flex-wrap: wrap;
  /* border: 1px solid blackColor; */
  align-items: stretch;
  margin: 10px 0px;
  padding: 10px;
  box-shadow: rgb(0 0 0 / 35%) 0px 5px 15px;
  border-radius: 6px;
  width: 100%;
}

.input-groupp {
  position: relative;
  display: flex;
  /* background: blue; */
  flex-wrap: wrap;
  /* border: 1px solid blackColor; */
  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(--whiteColor);
  font-size: 1rem;
  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;
  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;
  margin: 0;
}

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

.cartTotal h3.totalMoney {
  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: whiteColor;
}

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


a.btn.normalBtn,
button.btn.validateBtn {
  width: 28vw;
  /* text-align: center; */
  /* margin: 0px auto; */
  margin: 20px 50px 70px 75px;
  background: var(--primaryColor) !important;
  color: var(--whiteColor);
  padding: 0.8rem 0;
  border-radius: 10px;
  font-size: 1.1rem;
  border: 1px solid var(--primaryColor) !important;
}
@media (max-width:1800px) {
  a.btn.normalBtn,
button.btn.validateBtn {
  width: 31vw;
}
}
@media (max-width:1600px) {
  a.btn.normalBtn,
button.btn.validateBtn {
  width: 34vw;
}
}
@media (max-width:1500px) {
  a.btn.normalBtn,
button.btn.validateBtn {
  width: 38vw;
}
}

button.btn.validateBtn:hover {
  background: var(--primaryColor) !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(--whiteColor);
  width: 2px;
  height: 100%;
  top: 50%;
  position: absolute;
  transform: translateY(-50%);
  right: -10px;
}

span.TotalCartItemsAndPrice {
  font-size: 13px;
  margin-left: 6px;
  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;
}

/* cart page css end */

/* hero area code start  */

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

.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(--blackColor);
  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-size: 15vh;
  line-height: 16.3vh;
  opacity: 0;
  transform: translate(0px, 0px) rotate(0deg) skewX(-6deg);
  color: var(--whiteColor);
  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(--whiteColor);
}

.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(--whiteColor);
  font-family: "Passion One", cursive;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  padding: 1rem 10rem 1rem 1.5rem;
  width: max-content;
  border: 10px solid var(--fadewhiteColor);
  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(--whiteColor);
}

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

.heroSocialsIcons {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--fadeblackColor);
  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(--whiteColor);
}

.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(--fadewhiteColor);
  height: 8px;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}

.sliderProgressContainer .prgoressBar::before {
  content: "";
  background: var(--whiteColor);
  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(--whiteColor);
  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(--whiteColor);
  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;
  text-transform: uppercase;
  color: var(--darkBlue);
}

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

/*index.html page class*/

.mainCategoriess {
  position: relative;
  margin-top: -200px !important;
  text-align: center;
  background: var(--whiteColor);
}

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

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

.categoryBox {
  width: 100%;
  /*! background: var(--whiteColor); */
  /*! 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;
}

.categoryBox a {
  display: block;
  padding: 1rem;
}

.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;
  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%;
}

.footerDetailArea {
  background: var(--bs-gray-900);
  padding: 5rem 0;
  /*! border-top: 2px solid var(--secondryColor); */
}

.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(--primaryColor);
  margin-bottom: 20px;
}

.ftTxtContainer p {
  font-size: 0.9rem;
  color: var(--whiteColor);
}

.ftBotttomRow {
  background: var(--bs-gray-800);
  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(--whiteColor);
}

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

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

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: 6.6rem 0;
  min-height: 100vh;
}

.modelInerBox {
  margin: 3rem 0;
}

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

h2.modelHeading {
  font-size: 2rem;
  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(--blackColor);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  padding: 0.5rem 1rem;
  background: var(--whiteColor);
  font-size: 1.2rem;
  margin: 1rem 1rem 1rem 0;
  box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 18%);
  border-radius: 10px;
  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(--secondryColor);
}

.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(--whiteColor);
}

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

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

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

.prodImageShadeBox {
  padding: 0.5rem 1rem;
  background: var(--whiteColor);
  font-size: 1.2rem;
  margin: 1rem 0;
  box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 18%);
  border-radius: 10px;
  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-size: 1.2rem;
  margin: 0.5rem auto;
  color: var(--blackColor);
}

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

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

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

.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(--fadeblackColor);
  z-index: 555;
  top: 0;
  left: 0;
  overflow: hidden;
}

.popupForDelAndPic .popupItemsContainer {
  position: relative;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: rgba(11, 10, 10, 0.9);
}

.popupForDelAndPic .popupItemsContainer .innerPopupBox {
  width: 65%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--whiteColor);
  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(--greyColor);
  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(--greyColor);
}

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

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

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

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

.innerPopupBox select.form-control {
  box-shadow: none !important;
  background: var(--bs-gray-300) !important;
  cursor: pointer !important;
  outline: none !important;
  border: none !important;
  /*! padding: 1rem !important; */
  border-radius: 0 0 10px 10px !important;
  color: var(--blackColor) !important;
  font-size: 1rem !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(--whiteColor);
  font-size: 1.2rem;
  margin: 0;
}

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

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

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

.deliveryDetailBox {
  background: var(--whiteColor);
  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 30px 1px rgba(0, 0, 0, 0.45);
  /*! background: var\(--graydark; */
  padding: 1rem;
  border-radius: 0px;
  text-align: center;
  margin: 1rem 0;
  top: 0;
  transition: all linear 0.3s;
  border: 1px solid var(--bs-gray-500);
}

.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(--whiteColor);
  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(--bs-gray-600);
  /* flex-wrap: wrap; */
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  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(--whiteColor);
  font-size: 1rem;
  margin: 0.5rem 0.2rem;
  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(--primaryColor) !important;
  box-shadow: 0px 0px 7px 4px rgb(0 0 0 / 5%);
  color: var(--whiteColor) !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(--whiteColor);
  font-size: 1.2rem;
  margin: 0;
  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(--secondryColor);
  /*! 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.1rem; */
  position: relative;
}

.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(--blackColor);
  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(--secondryColor);
  font-size: 2.2rem;
  text-transform: uppercase;
  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%;
}

.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;
  color: var(--blackColor);
  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(--secondryColor);
  font-size: 1.2rem;
  text-transform: uppercase;
  margin: 1.5rem 0 0 0;
}

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

p.prodDescription {
  color: var(--whiteColor);
  font-size: 1.2rem;
  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-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(--blackColor);
  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(--whiteColor);
  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(--whiteColor);
}

.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(--whiteColor);
}

.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;
  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(--whiteColor);
  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(--whiteColor); */
  width: 30px;
  border: 4px solid var(--primaryColor);
  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(--whiteColor);
}

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: whiteColor;
}

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

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

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

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: whiteColor;
}

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

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

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

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: whiteColor;
}

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

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

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

.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: whiteColor;
}

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

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

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

.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;
  margin: 1.5rem 0 0 0;
}

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

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

.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(--whiteColor) !important;
  text-transform: uppercase;
  font-size: 1.5rem;
  /*! margin-left: 176px; */
  padding: 0.5rem 1rem;
  overflow: hidden;
  border-radius: 10px;
}

button.btn.addToCartCustomm {
  transition: all linear 0.3s;
  min-width: 100%;
  display: flex;
  align-items: center;
  background-color: var(--primaryColor) !important;
  color: var(--whiteColor) !important;
  text-transform: uppercase;
  font-size: 1.5rem;
  /*! margin-left: 166px; */
  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(--bs-gray-800) !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: whiteColor !important;
}

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

/* custom prod page code end  */

/*pizzaBox css start */

.animatedPizzaBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) 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: cover;
  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);
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-weight: normal;
}

@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;
  }
  .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-size: 17px;
}

.formShadowContainer {
  border-radius: 20px;
  padding: 2rem;
  /* position: absolute; */
  color: var(--whiteColor);
  /* width: max-content; */
  font-size: 10px;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
  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;
  /* position: absolute; */
  color: var(--whiteColor) !important;
  /*! width: 50%; */
  font-size: 10px;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
  margin: 2.1rem auto;
}

.formShadowContainerr {
  border-radius: 20px;
  padding: 2rem 0rem 2rem 1rem;
  color: var(--darkblue) !important;
  color: var(--darkblue) !important;
  /* width: max-content; */
  font-size: 10px;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
  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(--whiteColor);
  margin: 0.5rem auto;
}

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

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

.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 #333 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(--whiteColor);
  margin: 1rem auto;
  transition: all linear 0.5s;
}

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

p.formSubTxt {
  color: var(--whiteColor);
  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(--whiteColor);
  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;
  color: var(--blackColor);
}

.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(--blackColor);
  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(--whiteColor);
}

.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(--fadeprimaryColor);
}

.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 > span {
  display: none;
}

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  padding-bottom: 0.25rem;
  color: var(--blackColor);
}

.ui-datepicker-week-col {
  color: var(--darkBlue);
  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(--whiteColor);
  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: -1px;
  width: 12px;
  height: 12px;
  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: 25px;
  color: var(--whiteColor);
  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.8rem; */
  }
}

@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(--whiteColor);
  }
  /* 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(--fadewhiteColor);
    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: var(--whiteColor);
  font-size: 1rem;
}

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

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

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

.linkPageTxtDetails p a:hover {
  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;
  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;
  border-radius: 50px;
}

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

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

.primaryColorContainer {
  background: #fee8ed;
  padding: 50px 20px;
  border-radius: 20px;
  border: 1px solid #950e00;
}

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

.primaryColorContainer hr {
  border: 1px solid #950e00;
}

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: var(--whiteColor) !important;
  border-radius: 100px !important;
  border: 0px !important;
  color: var(--blackColor);
}

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 !important; */
  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: whiteColor;
  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: 1px #888 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(--whiteColor);
  padding: 1rem 0 0 1rem;
  border: 1px solid #b0b0b0 important;
  border-color: #b0b0b0;
  cursor: pointer;
  user-select: none;
  border-radius: 50px;
}

/*style items (options):*/

.select-items {
  position: absolute;
  background-color: var(--bs-gray-800);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
  margin-top: 5px;
  text-align: start;
}

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

.select-hide {
  display: none;
}

.select-items div:hover,
.same-as-selected {
  background-color: var(--bs-gray-700);
  border-radius: 0px;
  padding-bottom: 10px;
}

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

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

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

.cartItemIncDec span {
  font-size: 21px;
}

.nav-pills .nav-link {
  color: var(--whiteColor);
  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: 14px;
}

.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(--greyColor);
  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(--greyColor);
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
}

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

.nav-pills .nav-link.active,
.nav-pills .show > .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(--greyColor);
  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(--secondryColor);
  font-size: 1rem;
}

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

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

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

.extraList .minus {
  color: var(--primaryColor);
}

.cartIcon img {
  width: 45px;
  filter: invert(100) !important;
  padding-top: 0px;
}



.cartDrawerContainer.activeDrawer .validateBtnPrimary {
    position: fixed;
    bottom: -9px;
    width: 50vw;
  
    z-index: 111;
    left: 1px;
    background: var(--greyColor);
}

.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 var(--secondryColor);
}

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

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

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

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

.customRadio input:checked + label {
  background-color: #f9f9f9;
  border: 5px solid #950e00;
  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 #950e00;
  color: var(--darkBlue) !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 var(--bs-gray-600);
}

/* 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 #950e00;
  color: var(--primaryColor);
}

.customCheck input:checked + label {
  background-color: none;
  border: 5px solid #950e00;
  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 whiteColor; */
  /*! 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: #950e00 !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: var(--primaryColor);
}

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

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

.tabTitle {
  margin: 10px 0 50px 0;
  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; */
  /* background-size: contain; */
}

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

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

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

.detailsBtn a:hover {
  text-decoration: underline;
  color: var(--secondryColor);
}

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

p.comDetailHead.pt-3 {
}

.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(--blackColor);
}

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;
  padding: 10px;
}

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

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

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

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

.MonTabCart {
  left: -100px;
}

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

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

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

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

.BtnFull a:hover {
  color: var(--whiteColor);
}

.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(--primaryColor) !important;
}

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

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

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

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

.custom-btn:hover {
  color: var(--whiteColor);
}

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

.customReciptClass {
}

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

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

.container-fluid {
}

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

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

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

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

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

.radioclass {
  background-color: var(--whiteColor);
  border-color: var(--fadeblackColor);
}

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

.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: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
  width: 74%;
  height: 249px;
  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%;
  }
  .mobileApp {
    padding: 20px !important;
    width: 100% !important;
  }
  .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: #2d4355;
  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 #950e00, 0 0 20px #950e00, 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 #950e00, 0 0 30px #950e00, 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: #2d4355;
  position: relative;
  font-size: 40px;
  top: -6%;
  left: 49%;
}

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

p.pizzaName {
  /* 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: #2d4355;
  position: relative;
  left: -5%;
  z-index: 1;
  bottom: 29px;
  transform: scaleX(-1);
}

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

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

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

.CustomCartText {
  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 {
  width: 89%;
  font-size: 15px;
  height: auto;
  border-radius: 3%;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
  margin: 0rem 2rem 2rem 3rem;
  padding: 30px;
}

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

.CustomTabClass {
  padding: 20px 30px;
}

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

.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(--whiteColor);
  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;
  /* position: absolute; */
  color: var(--whiteColor) !important;
  /* width: max-content; */
  font-size: 15px;
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
  margin: 0rem auto;
}

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

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

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

.PizzaPic {
  width: 363px;
  height: 362px;
  padding: 0px;
  margin: 0px 2px 2px 16px;
  align-items: center;
}

.CustomColorPizza {
  color: var(--primaryColor) !important;
  color: var(--whiteColor);
}

.CustomColorPizza ul li {
  color: var(--whiteColor);
}

.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: whiteColor;
  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: whiteColor;
  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 whiteColor;
  border-right: 14px solid whiteColor;
  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 whiteColor;
  border-right: 14px solid whiteColor;
  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;
}

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(--whiteColor);
}

/* Handle */

ul#extraIngredients::-webkit-scrollbar-thumb {
  background: var(--whiteColor);
}

/* Handle on hover */

ul#extraIngredients::-webkit-scrollbar-thumb:hover {
  background: var(--whiteColor);
}

ul#extraIngredients button.nav-link {
  color: var(--blackColor);
  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(--greyColor);
  transition: all linear 0.3s;
  background: var(--whiteColor);
}

ul#extraIngredients button.nav-link.active {
  background: var(--primaryColor);
  border-color: var(--primaryColor);
  color: var(--whiteColor);
}

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-size: 1.7rem;
}

.BodaySectionTwo h4 {
  padding: 0rem 2rem 0rem 1.2rem;
}

.BodaySectionTwo p {
  padding: 0rem 2rem 0rem 1.2rem;
}

.BodaySectionTwo {
  margin: 2rem 0rem 0rem 0rem;
  /*! color: var(--greyColor); */
}

.CustomList li {
  margin: 0rem 0rem 0rem 0.3rem;
  color: var(--blackColor);
}

.CustomList li label {
  margin: 0rem 0rem 0rem 0.3rem;
  font-size: 18px !important;
  color: var(--whiteColor) !important;
}

.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;
}

.CustomList li {
  color: var(--blackColor) !important;
}

.footerSection h2 {
  font-size: 1.3rem !important;
}

.footerSection .ButtonClass {
  background-color: var(--primaryColor) !important;
  color: var(--whiteColor) !important;
  width: 130px !important;
  height: 50px;
  padding: 10px;
  margin: 4vh 0vh 0vh 19vh !important;
  font-size: 18px;
  border-radius: 13px !important;
}

.innerPopupBoxx .footerSection .ButtonClass {
  width: 100% !important;
  margin: 20px 0px !important;
}

.innerPopupBoxx .footerSection h2 {
  text-align: center;
  margin: 20px 0 0 0;
}

.customNewDesign span {
  vertical-align: middle;
  font-size: 20px;
  padding: 10px 0px 10px 1px;
  vertical-align: sub;
  color: var(--secondryColor) !important;
}

.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: 10px;
  height: 10px;
  background: var(--secondryColor);
  padding: 0px 0px;
  border-radius: 110%;
  transform: scale(1);
  display: block;
  position: absolute;
  left: 15px;
  top: -3px;
}

.productMainPrice strike {
  font-size: 1rem;
  color: var(--bs-gray-600);
  padding-right: 10px;
}

.tabForm .userFormContainer {
  text-align: left !important;
}

.tabForm label {
  padding-left: 20px;
}

/* new Divs start */

.validateBtn a {
  color: #fff;
}

.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(--greyColor);
}

.bonjourTxt h4 {
  font-size: 1.2rem;
  text-align: center;
}

.bonjourTxt h3:hover {
  color: var(--primaryColor);
}

.bonjourTxt h4,
.bonjourTxt h3 {
  text-transform: none;
  line-height: 2;
}

.bonjourSubHeading img {
  width: 22px;
  margin-right: 7px;
  filter: invert(100);
}

.bonjourTxt h4 {
  color: var(--whiteColor);
}

/* new Divs end */

a {
  color: var(--whiteColor);
}

.menuAds {
  background-image: url(../img/blackColor-board-bg.png);
  padding: 60px 0px;
  padding-right: 0px;
  padding-left: 0px;
}

.avec {
  /*! background-image: url(../img/avec-bg.png); */
  /*! background-position: center top; */
  /*! margin: 80px auto 0px auto; */
  padding: 100px 0px;
  color: var(--whiteColor);
  /*! background: var(--greyColor); */
}

.avec h1 {
  text-align: center;
  font-weight: 700;
  color: var(--primaryColor);
  font-size: 55px;
}

.avec p {
  text-align: center;
  font-size: 50px;
  /*! font-weight: bold; */
  color: var(--blackColor);
  margin: 0 auto;
  line-height: 50px;
  text-align: center;
}

.avecIcons {
  display: flex;
  width: 375px;
  margin: 20px auto 0 auto;
}

.prodSlider {
  padding: 80px 0px 80px 0px;
  color: var(--blackColor) !important;
}

.prodSlider h1 {
  font-family: arial-rounded;
  font-size: 60px;
}

.prodSlider button {
  background: var(--primaryColor);
  border: 0px;
  padding: 15px 50px;
  border-radius: 5px;
}

.prodSlider button a {
  color: #fff !important;
}

.prodSlider button a {
  color: #fff;
  text-decoration: underline;
}

/* crousal start */

.prodSlider .carousel {
  box-sizing: border-box;
  opacity: 1 !important;
  width: 100vw;
  height: 55vh;
}

.prodSlider .carousel-inner {
  position: relative;
  width: 128%;
  overflow: hidden;
}

.slider-buttons {
  position: relative;
  top: 30%;
}

.slider-buttons .btn-floating-left {
  position: absolute;
  left: -17% !important;
}

.slider-buttons .btn-floating-right {
  position: absolute;
  right: -22% !important;
}

@media (max-width: 1510px) {
  .prodSlider .carousel-inner {
    position: relative;
    width: 115%;
    overflow: hidden;
  }
  .slider-buttons .btn-floating-right {
    position: absolute;
    right: -12% !important;
  }
}

/*  crousel end */

.entryBtn svg path {
  fill: var(--whiteColor);
}

svg path {
  fill: var(--whiteColor);
}

.CustomProfileBlock {
  color: var(--whiteColor);
}

hr {
  color: var(--whiteColor) !important;
}

.navTel {
  color: var(--whiteColor) !important;
}

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

.indBg {
  /*! padding-top: 70px; */
  margin-top: 50px;
}

footer h2 {
  font-size: 20px !important;
}

.newsInput input {
  padding-left: 15px;
  border-radius: 100px 0px 0px 100px;
  border: 1px solid #262626;
  border-right: 0px;
  height: 48px;
  margin-top: 1px;
  float: left;
  width: 72%;
  font-size: 15px;
}

.newsInput button {
  background: var(--secondryColor);
  border: 0px;
  padding: 10px 0;
  height: 50px;
  border-radius: 0 100px 100px 0px;
  width: 28%;
  float: left;
  font-size: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.deliveryDetailBox a h2 {
  color: var(--blackColor) !important;
}

.changeDetailPencil img {
  filter: invert(100%);
}

.poductSizesSimple li a {
  color: var(--whiteColor);
}

.cartCounter {
  color: var(--secondryColor);
}

.card-title {
  text-align: center;
  text-transform: uppercase;
  margin: 15px 0px;
}

.card-body hr {
  color: #000 !important;
}

.card-body a {
  text-align: center !important;
  display: block;
  font-size: 18px;
  text-transform: uppercase;
}

.prodSlider h1 {
  margin-top: 100px;
}

.innerPopupBoxx h5 {
  /*! color: var(--blackColor); */
}

/* 05-MAY-2023 */

.cartDrawerContainer,
.entryDrawerContainer {
  box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45) !important;
  width: 660px;
  background: var(--greyColor);
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  /*! border: #0000006e 1px groove; */
  position: fixed;
  top: 66px;
  right: 28px;
  transition: all linear 0.3s;
  z-index: 55;
  transform: translateY(-150%);
  padding: 15px 0px;
}

.entryDrawerContainer {
  width: 288px !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;
}

.entryDrawerContainer img {
  /* margin-top: -300px; */
}

.bonjourTxt h3 {
  font-size: 1.1rem;
  text-align: left;
  margin-left: 15px;
  display: flex;
  align-items: center;
  cursor: pointer;
  /* display: none; */
  color: var(--whiteColor);
}

.entryTitleAndCloseBtn {
  background: var(--greyColor);
  float: right;
}

.categoryBox a {
  color: var(--whiteColor);
}

.categoryBox a:hover {
  color: var(--whiteColor);
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--primaryColor) !important;
}

.confirmation p {
  color: var(--whiteColor);
}

.form-check {
  color: var(--whiteColor) !important;
}

.prodTypShowBtn svg path {
  fill: var(--whiteColor) !important;
}

.prodTypShowBtn svg circle {
  fill: var(--primaryColor) !important;
}

.prodTypShowBtn svg circle:hover {
  fill: var(--bs-gray-700) !important;
}

.directAddToCart svg path {
  fill: var(--whiteColor) !important;
}

.directAddToCart svg circle {
  fill: var(--primaryColor) !important;
}

.directAddToCart svg circle:hover {
  fill: var(--bs-gray-700) !important;
}

.AddIcon svg path {
  fill: var(--whiteColor) !important;
}

.AddIcon svg circle {
  fill: var(--primaryColor) !important;
}

.AddIcon svg circle:hover {
  fill: var(--bs-gray-700) !important;
}

.plus svg path {
  fill: var(--whiteColor) !important;
}

.plus svg circle {
  fill: var(--primaryColor) !important;
}

.plus svg path:hover {
  fill: var(--secondryColor) !important;
}

.plus svg path:active {
  fill: var(--primaryColor) !important;
}

.minus svg path {
  fill: var(--whiteColor) !important;
}

.minus svg circle {
  fill: var(--primaryColor) !important;
}

.minus svg path:hover {
  fill: var(--secondryColor) !important;
}

.minus svg path:active {
  fill: var(--secondryColor) !important;
}

.secondList a img {
  width: 8vw !important;
}

.secondList a {
  display: flex;
  flex-direction: column;
}

.thirdList a img {
  width: 5vw !important;
}

body {
  color: #fff !important;
}

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

.footerDetailArea[src="img/map.jpg"] {
  width: 100% !important;
}

footer img {
  max-width: 100%;
}

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

.cartPageHeading,
.centerNavLink,
.linkPageHeading,
.ftTxtContainer h2,
.prodPrice,
.customProdBox h2.productName,
h2.modelHeading,
h2.formHeading,
h3.prodTitle {
  font-weight: 700;
}

.closeProdTypeBtn svg circle {
  fill: var(--primaryColor);
}

.closeProdTypeBtn svg circle:hover {
  fill: var(--blackColor) !important;
}

.custom-select {
  height: calc(3.5rem + 1px) !important;
  background: var(--grayColor) !important;
  margin-bottom: 1.5rem !important;
}

.tabForm .custom-select {
  margin-bottom: 0.5rem !important;
}

.prodShadowBox p {
  color: var(--whiteColor) !important;
}

#accompprod ul li,
#ingsupp ul li {
  color: var(--whiteColor) !important;
}

.linkPageContainer .nav-pills {
  margin-top: 50px;
}

.linkPageTxtDetails h1,
.linkPageTxtDetails h5 {
  color: var(--whiteColor) !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(--primaryColor) !important;
}

.sectionOne {
  /*! background-color: var(--greyColor); */
  /*! line-height: 30px; */
  margin-top: -7px;
  /*! padding: 100px 0; */
}

.sectionOne h1 {
  font-size: 75px !important;
  text-transform: uppercase;
  color: var(--primaryColor);
  text-align: left;
  line-height: 80px;
  margin-left: 100px;
}

.sectionOne h1 span {
  color: var(--whiteColor);
}

.sectionOne p {
  /*! padding: 0 100px; */
  font-size: 1.5rem;
  line-height: 40px;
  margin-left: 100px;
}

.sectionOne button {
  border-radius: 100px;
  font-size: 20px;
  margin: 0 auto 50px auto;
  padding: 15px 50px;
  display: block;
  background: none;
  border: solid 3px var(--primaryColor);
  display: none;
}

.sectionOne button a {
  color: var(--primaryColor);
  text-transform: uppercase;
  font-weight: 600;
}

.sectionOne button a:hover {
  color: var(--whiteColor);
}

.sectionOne .row,
.avec .row {
  display: flex;
  align-items: center;
}

.sectionOne h1,
.sectionOne p {
  text-align: left !important;
}

.offers {
  /*! background: var(--greyColor); */
  padding: 100px 0px;
}

.offers h4 {
  /*! font-weight: bold; */
  text-transform: uppercase;
  color: var(--primaryColor);
  text-align: center;
  font-size: 3rem;
}

.offers h1 {
  font-weight: bold;
  color: var(--whiteColor);
  text-align: center;
  margin-bottom: 30px;
  text-transform: uppercase;
  font-size: 55px;
}

.offers h5 {
  color: var(--blackColor);
  margin: 10px 0 10px 0;
  padding: 0px;
  font-weight: 600;
}

.offers p {
  color: var(--greyColor);
  /*! opacity: 0.8; */
  text-align: center;
  font-size: 1.3rem;
  margin: 0px auto;
  padding: 0px;
  /*! width: 150px; */
}

.offers img {
  /*! border-radius: 10px 10px 0px 0px; */
  margin-top: -70px;
  /*! position: relative; */
  /*! top: -100px; */
}

.offerBg {
  background-color: var(--whiteColor);
  padding: 20px;
  /*! border-radius: 0 0 10px 10px; */
  /*! height: 262px; */
}

.priceBtn {
}

/* Button 1e Start */

.custom-btn {
  border: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  cursor: pointer;
  padding: 5px 20px;
  display: inline-block;
  margin: 5px auto;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  outline: none;
  position: relative;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 2;
  letter-spacing: 0px;
}

.custom-btn:after {
  content: "";
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.custom-btn:before {
  font-family: "icomoon";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.custom-btn-1 {
  /*! border: 2px solid #000; */
  color: var(--whiteColor);
  font-size: 14px;
  font-weight: 500;
  background: var(--primaryColor);
  border-radius: 100px;
}

.custom-btn-1e {
  overflow: hidden;
}

.custom-btn-1e:after {
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  background: var(--blackColor);
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(40deg);
  -moz-transform: translateX(-50%) translateY(-50%) rotate(40deg);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(40deg);
  transform: translateX(-50%) translateY(-50%) rotate(40deg);
}

.custom-btn-1e:hover,
.custom-btn-1e:active {
  color: var(--whiteColor);
}

.custom-btn-1e:hover:after {
  height: 260%;
  opacity: 1;
}

.custom-btn-1e:active:after {
  height: 400%;
  opacity: 1;
}

/* Button 1e End */

.stars {
  float: left;
}

.stars img {
  width: 20px;
}

@media only screen and (max-width: 991px) {
  .sectionOne p {
    padding: 0 20px !important;
  }
}

.reviewSection {
  color: #fff;
  background: #202020;
  padding: 50px;
}

.reviewSection h1 {
  text-align: center;
  padding: 1vw 0px;
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 700;
}

.reviewSection .row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 0px;
}

.leftImgSection {
  margin: 0px 40px;
}

.currentReview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* border: 1px solid #000; */
  background: var(--bs-gray-700);
  color: #fff;
  border-radius: 40px;
  padding: 0px 0px 2vw 3vw;
  line-height: 1.7vw;
  text-align: left;
}

.currentReview .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.currentReview .title img {
  position: relative;
  top: -40px;
  width: 5vw;
}

.currentReview .title .strip {
  background-color: var(--primaryColor);
  color: #fff;
  padding: 0.1vw 0.6vw;
  font-size: 1vw;
  margin-top: 19px;
}

.currentReview h3 {
  font-size: 2vw;
  color: var(--whiteColor);
}

.currentReview p {
  font-size: 1vw;
}

.reviewBtn {
  display: flex;
  justify-content: flex-end;
}

.reviewBtn a {
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 0.8vw 1.8vw;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
}

.reviewBtn a:hover {
  background-color: var(--primaryColor);
  color: #fff;
  border: 1px solid var(--primaryColor);
}

video {
  /*! margin-top: 110px; */
  position: relative;
  width: 100%;
}

.offers video {
  width: 100%;
}

.likeHeart {
  box-shadow: 0px 0px 18px -7px rgba(0, 0, 0, 0.59);
  -webkit-box-shadow: 0px 0px 18px -7px rgba(0, 0, 0, 0.59);
  -moz-box-shadow: 0px 0px 18px -7px rgba(0, 0, 0, 0.59);
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin-top: 20px;
}

.likeHeart img {
  margin: 15px 0 0 12px;
  width: 25px;
}

.priceBtn img {
  width: 100px;
  float: right;
  margin-top: -20px;
}

.sliderDetails h4 {
  text-align: left !important;
  font-size: 75px;
  line-height: 65px;
}

.sliderDetails p {
  text-align: justify !important;
  color: #fff;
  padding-right: 75px;
}

.sliderDetails h4 span {
  color: var(--white);
}

.offers .row,
.avec .row {
  display: flex;
  align-items: center;
}

.mobileApp {
  background: var(--white);
  /*! width:75%; */
  font-family: "Bebas Neue", sans-serif !important;
  font-weight: normal;
  padding: 80px;
  /*! line-height: 30px; */
  /* text-align: left !important; */
  margin-right: 225px;
}

.sliderThumb {
  position: relative;
}

.sliderThumb img {
  width: 100px;
  margin-top: 0px !important;
  margin-right: 10px;
}

.Slider h1 {
  font-size: 400px;
  color: var(--primaryColor);
  font-weight: bold;
  opacity: 0.6;
  position: absolute;
  z-index: 0;
  top: 50px;
}

.Slider h2 {
  margin-top: 180px;
}

.footer p {
  font-weight: normal;
  font-size: 16px;
}

.footer h2 {
  font-weight: normal;
  font-size: 25px !important;
}

.Slider img {
  margin-top: 40px;
}

.offers .row,
.avec .row,
.roadMap .row,
.appArea .row {
  display: flex;
  align-items: center;
}

.roadMapPanel button {
  background: none;
  border: none;
}

.roadMapPanel button a {
  color: var(--primaryColor);
  font-weight: bold;
}

.mrgZero {
  margin: 0px !important;
  padding: 0px !important;
}

.ingr {
  position: absolute;
  right: -40px;
  bottom: -40px;
}

.appArea h1 {
  text-align: center;
  /*! font-family: "Cormorant Garamond", serif !important; */
  font-size: 75px;
  margin-bottom: 2rem;
  color: var(--primaryColor);
  font-weight: bold;
}

.appArea {
  /* background: url(../img/footerdetailbg.jpg) center right no-repeat;
  background-size: cover; */
  padding: 2.5rem 0 5rem 0;
}

.appIcons img {
  margin-bottom: 15px !important;
}

.swiper {
  /* width: 90%; */
  height: 100%;
  overflow: unset !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /*! background: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  /* height: 100%; */
  object-fit: cover;
}

.currentReview h3 img {
  width: 2vw;
}

.swiper-button-prev,
.swiper-button-next {
  top: -20% !important;
  left: unset !important;
  right: unset !important;
  margin: 0px 2.5vw;
}

.swiper-button-next:after {
  content: url(../img/swiperNext.png) !important;
}

.swiper-button-prev:after {
  content: url(../img/swiperPrev.png) !important;
}

.swiperNavigation {
  right: 7vw;
  position: relative;
}

.swiper-button-prev {
  left: -3.9vw !important;
  position: absolute !important;
}

.swiperHeading {
  display: block;
  margin-bottom: 3vw;
  width: 95%;
  float: right;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Cormorant Garamond", serif !important;
}

.swiperHeading h1 {
  font-family: "Cormorant Garamond", serif !important;
}

/* Roadmap Start */

.roadProdR {
  position: relative;
  margin: 100px 0px;
  height: 200px;
}

.prodRight img {
  position: absolute;
  width: 40% !important;
  right: 20px;
  top: -130px;
  z-index: 1;
}

.panelRight {
  position: absolute;
  background: var(--bs-gray-800);
  padding: 30px;
  font-size: 20px;
  width: 70%;
}

.roadProdR h1 {
  font-size: 80px;
  font-weight: bold;
  color: var(--primaryColor);
  position: absolute;
  top: -100px;
  left: 40px;
  font-weight: 900 !important;
  font-family: AlFresco !important;
}

.roadProdR p {
  font-size: 25px;
}

.roadProdR button {
  background: none;
  border: none;
}

.roadProdR button a {
  color: var(--secondryColor);
  font-weight: bold;
}

.roadProdL {
  position: relative;
  margin: 100px 0px;
  height: 250px;
}

.prodLeft img {
  position: absolute;
  width: 40% !important;
  top: -130px;
  z-index: 1;
}

.panelLeft {
  position: absolute;
  background: var(--bs-gray-800);
  padding: 30px;
  display: inline-table;
  right: 0px;
  top: 0px;
  font-size: 20px;
  width: 70%;
  min-height: 170px;
}

.roadProdL h1 {
  font-size: 80px;
  font-weight: bold;
  color: var(--primaryColor);
  position: absolute;
  top: -100px;
  left: 420px;
  font-weight: 900 !important;
  font-family: AlFresco !important;
}

.roadProdL p {
  font-size: 25px;
  position: absolute;
  top: 20px;
}

.roadProdL button {
  background: none;
  border: none;
  position: absolute;
  top: 110px;
}

.roadProdL button a {
  color: var(--secondryColor);
  font-weight: bold;
}

.roadProdL p,
.roadProdL button,
.roadProdL button a {
  left: 85px;
}

.roadMap {
  text-align: left;
  background: url(../img/main-page-bg.png) center center no-repeat;
  padding: 100px 0px;
  margin-top: -5px;
}

@media (max-width: 980px) {
  .prodLeft img {
    left: -230px;
  }
  .zeroMob {
    display: none;
  }
}

@media (max-width: 980px) {
  /* RoadMap End */
  .panelRight {
    width: 95%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
  }
  .roadProdR h1 {
    font-size: 60px;
    top: 100px;
    right: 30px;
    z-index: 11;
    left: inherit;
  }
  .prodRight img {
    right: 20px;
    top: -90px;
  }
  .panelLeft {
    width: 95%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
  }
  .roadProdL h1 {
    font-size: 60px;
    top: 100px;
    z-index: 11;
    left: inherit;
    right: 30px;
  }
  .prodLeft img {
    left: 30px;
    top: -90px;
  }
  .roadProdL p,
  .roadProdL button,
  .roadProdL button a {
    left: 20px;
  }
}

.indoStars {
  margin: 0 auto;
  width: 120px;
}

.indoStars img {
  width: 20px;
  height: 20px;
}

.prodList {
  border: 1px solid var(--bs-gray-700);
  padding: 20px;
  margin: 20px 0px;
}

.stars {
  width: 100%;
}

.prodList p {
  text-align: center;
  font-size: 20px;
}

.prodList button {
  font-weight: bold;
  border: 0px;
  width: 100%;
  font-size: 15px;
}

.prodList button a {
  background-color: var(--primaryColor);
  color: var(--whiteColor);
  padding: 10px 0px;
  display: block;
  transition: transform 1s;
  /* Animation */
}

.prodList button a:hover {
  background-color: var(--secondryColor);
  transform: scale(1.1);
}

.sale {
  background: var(--secondryColor);
  color: var(--blackColor);
  text-align: center;
  text-transform: uppercase;
  position: relative;
  top: 20px;
  left: -42px;
  width: 70px;
  font-weight: bold;
  transform: rotate(-0.25turn);
}

.mobile {
  margin: 20px 0px;
}

.appArea img {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* ImageRotation Start */

.image {
  position: absolute;
  top: 50%;
  /*! left: 50%; */
  width: 120px;
  height: 120px;
  margin: -00px 0 0 -60px;
  /* -webkit-animation:spin 30s linear infinite;
  -moz-animation:spin 30s linear infinite;
  animation:spin 30s linear infinite; */
}

.image:hover {
  animation: zoom-in-zoom-out 1s ease;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(180deg);
  }
}

@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(180deg);
  }
}

@keyframes spin {
  100% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

/* ImageRotation End */

/* buttonZoom Start */

.zoom-in-out-box {
  animation: zoom-in-zoom-out 1s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

/* buttonZoom End */

.testimonials {
  background: var(--greyColor);
  padding-top: 160px !important;
  padding-left: 6vw !important;
}

.testTxtSec ul li {
  cursor: pointer;
  margin: 20px 0px;
  font-size: 1.5vw;
  line-height: 45px;
  font-family: "Poppins";
  font-weight: 600;
  background: linear-gradient(0deg, var(--primaryColor), var(--primaryColor))
    no-repeat right bottom / 0 var(--bg-h);
  transition: background-size 350ms;
  text-decoration: none;
  color: inherit;
  line-height: 1.5;
  width: fit-content;
  color: #fff;
}

.testTxtSec ul li sup {
  font-size: 13px;
  line-height: 28px;
  font-weight: 600 !important;
}

.listunderline {
  padding-bottom: 2px;
  --bg-h: 2px;
}

.testTxtSec h4 {
  font-family: "Norican";
  font-size: 2vw;
  line-height: 34px;
  color: var(--primaryColor);
}

.add_keyframe {
  animation: fade 0.3s;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.1;
  }
  20% {
    opacity: 0.2;
  }
  30% {
    opacity: 0.3;
  }
  40% {
    opacity: 0.4;
  }
  50% {
    opacity: 0.5;
  }
  60% {
    opacity: 0.6;
  }
  70% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.9;
  }
  100% {
    opacity: 1;
  }
}

.txtMainContainer h2 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 3vw;
  line-height: 3.6vw;
  letter-spacing: 0px;
  color: #fff;
  text-transform: none;
  font-style: normal;
}

.txtMainContainer h2 #list {
  padding: 0;
  height: 2.5em;
}

.txtMainContainer h2 #list li {
  float: left;
  text-align: center;
  line-height: 60px;
  opacity: 0;
  animation: fadeIn 1s ease-in both;
}

.listunderline {
  padding-bottom: 2px;
  --bg-h: 2px;
}

.testTxtSec ul li:hover {
  color: var(--primaryColor);
  background-size: 90% 2px;
  background-position-x: left;
}

.set-active {
  color: var(--primaryColor) !important;
  background-size: 90% 2px !important;
  background-position-x: left !important;
}

.set-active svg {
  background-color: var(--primaryColor);
  transition: background-color 0.35s linear;
}

.set-active svg path {
  fill: #fff;
}

.testTxtSec h4 {
  font-family: "Norican";
  font-size: 2vw;
  line-height: 34px;
  color: var(--primaryColor);
}

.testTxtSec h2 {
  font-family: Poppins, sans-serif;
  font-weight: 700;
  font-size: 3vw;
  line-height: 60px;
  letter-spacing: 0px;
  color: var(--primaryColor);
  text-transform: none;
  font-style: normal;
}

.testTxtSec h2.red-h2 {
  font-weight: 700;
  font-size: 2vw;
  color: var(--primaryColor);
  font-style: normal;
}

p.sliderP {
  font-family: Quicksand, sans-serif;
  font-weight: normal;
  font-size: 1.5vw;
  line-height: 40px;
  letter-spacing: 0px;
  color: #fff;
  text-transform: none;
  font-style: normal;
}

.add_keyframe {
  animation: fade 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.swiper-static-text .msmain {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0px auto;
  background-color: #fff;
  width: 15vw;
  height: 15vw;
  border-radius: 50%;
  position: relative;
  left: 6vw;
}

.swiper-static-text .msmain p {
  text-align: center;
  font-size: 0.8vw;
  color: #000;
}

.swiper-static-text .swiper {
  top: -17.5vw;
  right: -4vw;
}

ul.sidesList li svg {
  width: 1vw;
  height: 1vw;
  padding: 5px;
  border-radius: 50%;
}

ul.sidesList li svg path {
  fill: #fff;
}

.testTxtSec ul li:hover svg {
  background-color: var(--primaryColor);
  transition: background-color 0.35s linear;
}

.testTxtSec ul li:hover svg path {
  fill: #fff;
}

.bbgImg {
  position: absolute;
  right: 0px;
  width: 16vw;
  margin-top: 6%;
  animation: jello 2s infinite;
  transform-origin: center;
  display: none !important;
}

@keyframes jello {
  11.1% {
    transform: none;
  }
  22.2% {
    transform: skewX(0) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(0) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(0) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(0) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(0) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(0) skewY(-0.1953125deg);
  }
  100% {
    transform: none;
  }
}

.footerDetailArea .container .row {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4vw 0px 0px 0px;
}

.footerDetailArea h1 {
  color: var(--white);
  text-align: center;
  margin: 2vw 0px;
  font-size: 3vw;
}

.footerDetailArea .ftTxtContainer img {
  width: 18vw;
}

.footerDetailArea .container .row .col-lg-3:nth-child(2) {
  margin-top: -11vw;
}

.socialIcons a img {
  width: 11vw;
  margin: 15px 0px;
}

.socialIcons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: -37vw;
}

.carousel-indicators li {
  cursor: pointer;
}

.carousel-indicators {
  position: absolute !important;
  /* bottom: 10% !important; */
}

@media (max-width: 1750px) {
  .carousel-indicators {
    position: absolute !important;
    bottom: 18% !important;
  }
}

@media (max-width: 1570px) {
  .carousel-indicators {
    position: absolute !important;
    bottom: 18% !important;
  }
}

@media (max-width: 1470px) {
  .carousel-indicators {
    position: absolute !important;
    bottom: 24% !important;
  }
}

.carousel {
  width: 100%;
  height: 100vh !important;
  opacity: 1 !important;
}

.carousel-item {
  margin-top: 5vw;
}

.carousalParentDiv {
  width: 100vw;
  height: 60vw;
  background: url(../img/heroSliderBg.jpg) center center no-repeat;
  background-size: cover;
}

.animImg img {
  margin-right: -117px;
}

.animImg .img-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.animImg:nth-child(2) .img-container {
  justify-content: flex-end !important;
}

.animText {
  color: #fff;
  padding: 6vw;
  padding-top: 10vw;
  padding-left: 13vw !important;
  z-index: 11;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.animText .text-container {
  font-family: "Barlow" !important;
}

.animText h2 {
  font-weight: bold;
  margin-bottom: 25px;
}

.animText h2 .text-container {
  line-height: 4vw;
  letter-spacing: -4px;
}

.animText h2 span:nth-child(1),
.animText h2 span:nth-child(2),
.animText h2 span:nth-child(3) {
  font-family: "AmazingKids";
  color: var(--primaryColor);
  position: relative;
  z-index: 111;
  font-size: 8vw;
  font-weight: normal !important;
}

.animText a {
  color: #fff;
  background: var(--primaryColor);
  padding: 8px 56px;
  padding-top: 12px;
  font-size: 1.5vw;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-transform: uppercase;
}

.animText a:hover {
  color: #fff;
}

.whttxt {
  font-family: "Helvetica";
  font-size: 1.8vw;
  line-height: 2.2vw;
  margin: 3vw 0vw;
}

.animImg .smallImages img {
  animation: img 1.7s infinite;
  animation-timing-function: linear;
  width: 4vw;
}

.smallImages {
  position: absolute;
  width: 100%;
  height: 100%;
}

.imgCont {
  width: 6vw;
  height: 6vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.imgCont1 {
  top: 8vw;
  position: relative;
  left: 12vw;
}

.imgCont2 {
  right: -44vw;
  position: relative;
  top: 1vw;
  z-index: 11;
}

.imgCont3 {
  top: 23vw;
  position: relative;
  left: 23vw;
}

@keyframes img {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.burger,
.pizza,
.salade {
  position: absolute;
}

.pizza {
  margin-top: 200px;
}

.carousel-item:nth-child(2) .animImg img,
.carousel-item:nth-child(3) .animImg img {
  margin-right: -17.5vw;
}

.burger {
  margin-right: 0 !important;
  transition: all 0.3s ease-in-out;
}

.salade {
  transition: all 0.3s ease-in-out;
}

.burger:hover,
.salade:hover {
  transform: scale(1.1);
  transition: all 0.3s ease-in-out;
}

/* Pizza Animation */

.slice {
  position: absolute;
}

.slice1 {
  position: relative;
  left: -345px;
}

.slice2 {
  left: 41%;
  top: 25%;
  z-index: 11;
  transition: all 0.3s ease-in-out;
}

.slice3 {
  top: 53%;
  left: 40%;
  transition: all 0.4s ease-in-out;
}

.slice4 {
  top: 54%;
  left: 19%;
  transition: all 0.4s ease-in-out;
}

@media (max-width: 1700px) {
  .slice2 {
    left: 39%;
    top: 25%;
  }
  .slice3 {
    top: 51%;
    left: 36%;
  }
  .slice4 {
    top: 53%;
    left: 16%;
  }
}

@media (max-width: 1550px) {
  .slice2 {
    left: 37%;
    top: 23%;
  }
  .slice3 {
    top: 49%;
    left: 34%;
  }
  .slice4 {
    top: 52%;
    left: 15%;
  }
  .pIngrd .pi6 {
    transition: all 0.2s ease-in-out;
    bottom: 4vw !important;
    right: -12vw !important;
  }
}

@media (max-width: 1450px) {
  .slice2 {
    left: 35%;
    top: 23%;
  }
  .slice3 {
    top: 49%;
    left: 31%;
  }
  .slice4 {
    top: 52%;
    left: 13%;
  }
}

@media (max-width: 1350px) {
  .slice2 {
    left: 33%;
    top: 23%;
  }
  .slice3 {
    top: 47%;
    left: 29%;
  }
  .slice4 {
    top: 51%;
    left: 11%;
  }
}

.firstItem {
  height: 45vw;
}

.swiper-slide img {
  border-radius: 50%;
  width: 25.5vw;
}

.swiper-slide .icon-section img {
  width: 3vw;
  margin-bottom: 12px;
  border-radius: unset !important;
}

.swiper-static-slide .statImg {
  position: absolute;
  width: 34vw;
  height: 34vw;
  top: -4vw;
  background-repeat: no-repeat;
  left: -4vw;
}

.swiper-static-slide {
  z-index: 1;
  position: relative;
}

.centertxt {
  text-align: center;
  font-size: 3vw;
  font-weight: 900;
}

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

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

.errowtxt h2 {
  color: var(--primaryColor);
  font-size: 3rem;
  padding: 0px 30px;
  font-weight: 900;
}

.errowtxt img {
  animation: zoom-in-zoom-out 1.2s ease infinite;
}

.swiper-slide-active .msmain p,
.swiper-slide-active .icon-section {
  transition: 0.5s;
  animation: anim 1s;
  position: relative;
}

@keyframes anim {
  0% {
    bottom: -100px;
    opacity: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    bottom: 0px;
    opacity: 1;
  }
}

.swiper-slide-active img {
  transition: all 2s;
  animation: anim2 1s;
}

@keyframes anim2 {
  0% {
    opacity: 0;
  }
  95% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}

#mytable td {
  color: var(--white);
}

.cartDrawerContainer a h3 {
  color: var(--primaryColor);
}

.cartDrawerContainer a:hover h3 {
  color: var(--whiteColor);
}

#menu6 .formShadowContainer a {
  color: var(--primaryColor) !important;
}

#menu6 .formShadowContainer a:hover {
  text-decoration: underline !important;
}

.units {
  width: max-content;
  margin: -20vh auto;
  position: relative;
  z-index: 1;
}

.units h1.original {
  -webkit-text-stroke: 3px #fff;
  -webkit-text-fill-color: transparent;
  font-size: 15.5vw;
  text-align: center;
}

.units h1.shadow {
  transform: rotateX(180deg) translateY(15px);
  -webkit-mask-image: linear-gradient(transparent 50%, white 90%);
  -webkit-text-stroke: 3px #fff;
  -webkit-text-fill-color: transparent;
  font-size: 15.5vw;
  text-align: center;
  position: relative;
  top: -10vh;
}

.appArea2 h2 {
  color: var(--primaryColor);
  font-size: 12vw;
  text-align: center;
  position: relative;
  z-index: 2;
  top: 0vh;
  font-family: AlFresco !important;
}

.appIcons {
  margin-top: -4vh;
  position: relative;
  z-index: 1;
}

img.posnset {
  position: absolute;
  top: 14vh;
  left: 5vw;
  z-index: 0;
  animation: zoom-in-zoom-out 2s ease infinite;
}

@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@media (max-width: 1750px) {
  .units {
    margin: -15vh auto;
  }
  img.posnset {
    left: 0vw;
  }
}

@media (max-width: 1550px) {
  .units h1.shadow {
    top: -8vh;
  }
}

@media (max-width: 1650px) {
  img.posnset {
    width: 40%;
    top: 12vh;
  }
}

@media (max-width: 1450px) {
  img.posnset {
    width: 43%;
    top: 9vh;
  }
}

@media (max-width: 1350px) {
  .units {
    margin: -12vh auto;
  }
}

@media (max-width: 1200px) {
  .units h1.shadow {
    top: -6vh;
  }
}

.modal-header h5 {
  color: var(--blackColor) !important;
}

@media (max-width:1600px) {
    .prodTypeBtns a{
      margin: 0 0px;
    }
  }
  @media (max-width:1450px) {
    .categoryBox a {
      font-size:14px;
    }
  }
  input[type="date"]{
    color-scheme: dark;
  }

  #cartDrawer2 img{
    filter:invert(100);
  }

  .leaflet-popup-content p{
    color:#000;
  }
  .leaflet-popup-content p b{
    color:var(--primaryColor);
  }
