@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");

@font-face {
  font-family: CeraRoundPro;
  src: url(../fonts/Fontspring-DEMO-ceraroundpro-regular.otf);
}

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

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

@font-face {
  font-family: SouthGardens;
  src: url(../fonts/South-Gardens-Personal-Use.ttf);
}

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

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

@font-face {
  font-family: freescript;
  src: url(../fonts/FREESCPT.TTF);
}

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

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

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

@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: Mind-Boggle;
  src: url(../fonts/Mind-Boggle.otf);
}

@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: #262626;
  --customPink: #e60092;
  --primaryColor: #fff600;
  --secondryColor: #fff600;
}

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

#intro-page {
  padding: 0;
  margin: 0;
}

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

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

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

html {
  scroll-behavior: smooth;
}

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

.hideOverFlow {
  overflow: hidden !important;
}

ul {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

.form-control {
  /* background-color: var(--lightCustomGrey); */
  background: none !important;
  color: var(--whiteColor) !important;
  padding: 1rem !important;
}

input.form-control::placeholder {
  color: #606161 !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(25%, 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(--greyColor);
  width: 25%;
  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: 50%;
}

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

.mainHeroNav {
  background: transparent;
  box-shadow: unset;
  transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.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: flex-start;
  width: 100%;
}

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

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

nav.mainNav a {
  font-size: 1.3rem !important;
  font-family: "Sobread";
  text-transform: uppercase;
  color: var(--darkBlue);
  transition: all linear 0.3s;
  position: relative;
  font-weight: normal;
  letter-spacing: 3px;
  transition: all 0.3s linear;
}

nav.mainNav a.glow {
  color: var(--primaryColor) !important;
}

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

.centerNavLink ul li {
  position: relative;
}

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

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

a.navTel {
  position: relative;
  font-family: "CompactaB" !important;
  margin-right: 5vw;
}

a.navTel span img {
  width: 30px;
  /* transform: rotate(230deg); */
  left: -1.1rem;
  position: relative;
}

a.navTel svg {
  width: 30px;
  transform: rotate(230deg);
  left: -1.1rem;
  position: relative;
}

a.navTel svg:hover path {
  fill: var(--whiteColor);
}

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

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: 180px !important;
  transition: width 0.2s ease-in-out;
}

a.userIcon svg {
  width: 20px;
}

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: 22px;
  height: 4px;
  background: var(--primaryColor);
  display: block;
  border-radius: 10px;
}

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

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

nav.mainNav button: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: 68vh;
  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;
}

a.userIcon svg path,
a.userIcon2 svg path {
  fill: var(--primaryColor) !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(--primaryColor);

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

a.btn.normalBtn,
button.btn.validateBtn {
  width: 31vw;
  /* text-align: center; */
  /* margin: 0px auto; */
  margin: 8px 53px 7px 89px;
  background: var(--primaryColor) !important;
  color: var(--whiteColor);
  padding: 0.8rem 0;
  border-radius: 10px;
  font-size: 1.1rem;

  border: 1px solid var(--primaryColor) !important;
}

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

.formActionBtn button.btn.validateBtn:hover {
  background: var(--whiteColor) !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: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(197deg) brightness(92%) contrast(108%);
}

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

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

span.TotalCartItemsAndPrice {
  font-size: 13px;
  margin-left: 6px;
  display: flex;
  text-align: left;
  padding-left: 20px;
  flex-direction: column;
  align-items: center;
}

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

.validateBtnPrimary button.btn.validateBtn .row {
  display: flex;
  align-items: center;
  color: var(--blackColor);
}

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

.sliderContainerBottom {
  background-color: var(--blackColor);
}

.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 {
  text-align: left !important;
  background: linear-gradient(to right, #000000 50%, #fff600 50%);
}

.mainCategoriess .categoryBox p {
  font-size: 2.45rem;
}

.mainCategoriess .container-fluid {
  background: url(../img/topbtnbg.png) center center no-repeat;
  background-size: cover;
}

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;
  text-align: center;
  font-family: "Sobread";
}

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

.categoryBox .catProdImg {
  transition: transform 0.3s ease-in-out;
}

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

h3.catTitle {
  font-size: 1.6rem;

  color: var(--primaryColor);
  margin-top: 2rem;
}

.categoryBox:hover {
  transform: scale(1);
}

/* home page categories end  */

/* footer code start */

.footerDetailArea .container-fluid .row .col-lg-4 {
  opacity: 1 !important;
  /* Ensure full visibility */
  transform: none !important;
  /* Cancel any transformation (like fade, slide, etc.) */
  transition: none !important;
  /* Remove the transition animation */
}

footer.footer#footerbgImage {
  background: url(../img/footer-bg.png) center top no-repeat;
  background-size: cover;
}

footer.footer {
  display: block;
  width: 100%;
  color: var(--blackColor);
  padding: 12.5vw 0px 0px 0px;
  position: relative;
  z-index: 111;
}

footer.footer h2 {
  font-family: "Sobread";
  margin-bottom: 0.3vw !important;
  font-size: 2.7vw !important;
}

footer.footer .last-third-section {
  margin-bottom: 3vw;
}

footer.footer p.bottomTxt {
  padding: 1.5vw 0px;
  margin: 0px;
  border-top: 1px solid var(--blackColor);
}

footer.footer p.bottomTxt a {
  color: var(--blackColor);
}

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

.storeIcons a {
  margin: 0 0.5rem;
}

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

.ftTxtContainer h2 {
  font-size: 2.3rem !important;
  color: var(--primaryColor);
  margin-bottom: 10px;
  font-family: "Sobread";
  font-weight: normal !important;
  letter-spacing: 2px;
}

.ftTxtContainer p {
  font-size: 1.3rem;
  color: var(--whiteColor);
  font-family: "Poppins";
}

.ftBotttomRow {
  background: #303030;

  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.5rem 0;
}

.card-img-top {
  width: 96% !important;
}

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

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

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

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

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

.linkPageTxtDetails span img[src="img/arrow-left-Bold.svg"] {
  margin: 3rem 0px 0px 0px;
}

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

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

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

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

.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 .form-control {
  padding: 0px 1rem !important;
}

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

.takeAwayContainer .popupHeadingIcon h5 a {
  color: var(--blackColor) !important;
}

.takeAwayContainer .popupHeadingIcon span svg path {
  fill: var(--blackColor);
}

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

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

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

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

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

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

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

.popupHeadingIcon span svg path {
  fill: var(--blackColor);
}

.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: 2rem 0;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

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

.delTakeInnerContainer .col-lg-6 {
  display: flex;
}

.adressAndDeliveryBtns h2.nomralDetail {
  color: var(--blackColor);
  font-size: 1.2rem;

  margin: 0;
}

.adressAndDeliveryBtns h2.nomralDetail span {
  display: block;

  font-size: 1rem;
}

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

.takeAwayDetailBox {
  background: #fff;
  border-radius: 10px 0 0 10px;
  width: 100%;
}

.deliveryDetailBox {
  background: var(--primaryColor);
  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\(--gray-dark;
  padding: 1rem;
  border-radius: 0px;
  text-align: center;
  margin: 1rem 0;
  top: 0;
  transition: all linear 0.3s;
}

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

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

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

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

p.prodDetail {
  color: var(--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; */
  /* height: 110px; */
  justify-content: center;
  align-items: flex-end;
  align-content: flex-end;
}

.poductExtra ul,
.cutsomProdSizes ul,
.poductSizesSimple ul {
  background: var(--bs-gray-800);
  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;
  flex-wrap: wrap;
}

.poductExtra ul {
  justify-content: flex-start;
  padding-left: 3rem !important;
}

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


@media (max-width: 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(--blackColor) !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(--primaryColor);
  /*! 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 0px;
  color: var(--darkBlue);
  font-size: 1.1vw;
  position: relative;
}

.prodPriceAndAddBtn .prodTypeBtns a {
  font-size: 1vw;
}

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

  .popupDiv h1 {
    font-size: 1.2rem !important;
  }
}

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

.prodTypeBtns button.btn.closeProdTypeBtn span svg path {
  fill: var(--blackColor);
}

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: 40%;
  position: absolute;
  right: -1px;
  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(--primaryColor);
  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(--primaryColor);
  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(--blackColor);
}

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

#zoneRechargement .linkPageTxtDetails .mx-xxl-5 {
  display: flex;
  justify-content: space-around;
}

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

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

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(--blackColor) !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(--blackColor) !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 span.btnIcon svg path {
  fill: var(--blackColor);
}

button.btn.addToCartCustom:hover {
  background: var(--whiteColor) !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(--whiteColor) !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: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: 1;
  position: absolute;
  width: 200px;
  box-shadow: inset 0px 0px 30px 10px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

.readForPackingBox {
  transition: all linear 2s;
}

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

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

.productInnerContainer {
  position: relative;
}

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

.productInnerContainer img {
  width: 100%;
}

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

/*pizzaBox css end*/

/* product page code end  */

/* cart page css code start  */

h2.cartPageHeading {
  margin: 3rem auto;
  text-align: center;
  color: var(--primaryColor);

  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

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

.inputWithIcon {
  position: relative;
}

/* Chrome, Safari, Edge, Opera */
.inputWithoutIcon input[type="number"]::-webkit-outer-spin-button,
.inputWithoutIcon input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.inputWithoutIcon input[type="number"] {
  -moz-appearance: textfield;
}

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(--whiteColor) !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: 1rem 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: -1px;
  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: 20px;
  height: 20px;
  left: -2px;
  z-index: 5;

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

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

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

.checkBoxNLbl label span,
.radioBoxNLbl label span {
  font-size: 1rem;
  margin-left: 14px;
  color: var(--whiteColor);

  position: relative;
}

.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) {
  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: 25%;
  }

  .centerNavLink {
    display: none;
  }

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

.linkPageTxtDetails .CustomMapMsgBoxx p {
  color: var(--blackColor) !important;
}

.linkPageTxtDetails h2.linkPageHeading {
  color: var(--primaryColor);
  font-size: 1.75rem !important;

  text-transform: uppercase;
}

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

  text-transform: uppercase;
}

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

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

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

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

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

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: 0px;
  border: 1px solid #b0b0b0 important;
  border-color: #b0b0b0;
  cursor: pointer;
  user-select: none;
  border-radius: 50px;
}

.select-items div {
  padding: 1rem !important;
}

/*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: 40px;
  outline-color: var(--primaryColor);
  margin: 0 5px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
}

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

.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(--primaryColor);
  font-size: 1rem;
}

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

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

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

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

.cartIcon img {
  width: 27px;

}

.cartIcon img:hover {
  /* filter: invert(1) !important; */
}

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

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

.customRadio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -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(--primaryColor);
}

/* 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 #fff600;
  color: var(--primaryColor) !important;
}

.customRadio input:checked+label {
  /* background-color: #f9f9f9; */
  border: 5px solid #fff600;
  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 #fff600;
  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 #fff600;
  color: var(--primaryColor);
}

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

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

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

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

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

.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(--blackColor);
  font-size: 13px;
}

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

.BtnFull:hover {
  background-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: 3rem;
}

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

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

  .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 #fff600, 0 0 20px #fff600, 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 #fff600, 0 0 30px #fff600, 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(--primaryColor);
}

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

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

.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: 500px !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);
  font-size: 1vw !important;
}

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

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

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

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

.formShadowContainer.aos-init.aos-animate p a {
  color: var(--blackColor) !important;
}

.BodaySectionTwo {
  overflow: scroll;
  overflow-x: hidden;
  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(--blackColor) !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(--primaryColor) !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(--primaryColor); */
  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: var(--blackColor);
}

.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: var(--primaryColor);
  /*! background-size: cover; */
  padding: 2vw 0px 0px 0px;
  padding-right: 0px;
  padding-left: 0px;
  z-index: 11111;
  position: relative;
  margin: -8rem 0px 0rem 0px;
}

.menuAds .topTextCaption {
  margin-bottom: 7vw;
}

.menuAds .topTextCaption h1 {
  text-align: center;
  line-height: 1.3vw;
}

.menuAds .topTextCaption h1 .span1,
.menuAds .topTextCaption h1 .span2 {
  font-family: "Sobread";
}

.menuAds .topTextCaption h1 .span1 {
  background: url(../img/whiteBg.png) center center no-repeat;
  background-size: cover;
  color: var(--blackColor);
  font-size: 2.7vw;
  width: 21vw;
  display: block;
  margin: 0px auto;
  padding: 1.4vw 0px 0.8vw 0px;
}

.menuAds .topTextCaption h1 .span2 {
  color: var(--blackColor);
  font-size: 4vw;
}

.menuAds .topTextCaption h1 .span3 {
  font-family: "AmazingKids";
  color: var(--whiteColor);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  font-size: 7vw;
  top: 2.5vw;
  position: relative;
}

.menuAds .card {
  background-color: transparent !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border: unset !important;
}

.menuAds .card:hover img {
  transform: scale(1.05);
}

.menuAds .card .borderImg {
  display: none;
}

.menuAds .card:hover .borderImg img {
  transform: scale(1);
  transition: filter 0.3s ease-in-out;
}

.menuAds .imgContainer img {
  position: relative;
  top: -30px;
}

.menuAds .card img {
  transition: transform 0.1s ease-in-out;
}

.menuAds .card .imgContainer {
  /* position: absolute;
  top: 5rem; */
}

.menuAds .card .txtContainer h1 {
  transition: background-color 0.3s ease-in-out;
  font-family: "AmazingKids";
  color: var(--whiteColor);
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: black;
}

@media screen and (max-width: 1600px) {
  .menuAds .card .txtContainer h1 {
    font-size: 4vw !important;
  }

  .menuAds .card .txtContainer a {
    font-size: 2vw !important;
  }
}

.menuAds .card:hover .borderImg img {
  filter: sepia(100%) saturate(100) hue-rotate(348deg) brightness(76%) contrast(160%);
}

.menuAds .card .txtContainer {
  font-family: "Sobread";
  width: 92%;
  text-align: center;
  line-height: 2rem;
  top: -5vw;
  position: relative;
}

.menuAds .card .txtContainer h1 {
  font-size: 4vw;
}

.menuAds .card .txtContainer a {
  color: var(--blackColor);
  font-size: 2rem;
  padding: 3px 1rem;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
  top: -1rem;
  font-family: "CeraRoundPro";
}

.avec {
  background-image: url(../img/avec-bg.png);
  background-position: center -30px;
  margin: 80px auto 0px auto;
  padding-top: 50px;
  color: var(--blackColor);
}

.avec h1 {
  font-family: impact;
  text-align: center;
  margin-top: 130px;
}

.avec p {
  text-align: center;
}

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

.prodSlider {
  padding: 8rem 0px 0px 0px;
  color: var(--blackColor) !important;
  background: url(../img/footerBg.png) center top repeat;
  /*! background-size: cover; */
  /*! display: flex; */
  justify-content: space-evenly;
  position: relative;
  z-index: 30;
}

.prodSlider .footerDetailArea {
  background: unset !important;
}

.prodSlider h1 {
  font-family: "Sobread";
  font-size: 60px;
}

.prodSlider p {
  color: var(--whiteColor);
  text-align: center;
  font-family: "Sobread";
}

.prodSlider .footerDetailArea p {
  text-align: left !important;
  font-family: "Poppins";
  font-weight: normal;
}

.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 !important;
  width: 100%;
  overflow: hidden;
  height: 20rem;
  /* top:-10rem; */
}

.prodSlider .carousel-inner .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 3px solid var(--primaryColor);
  background: transparent;
  border-radius: 0.6rem !important;
  position: relative;
  padding: 5px;
  height: 15rem;
  top: -6rem;
}

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

.slider-buttons .btn-floating-left {
  position: absolute;
  z-index: 111;
  left: -6rem;
}

.slider-buttons .btn-floating-right {
  position: absolute;
  right: -39vw !important;
  z-index: 2222;
}

@media (max-width: 1510px) {
  .prodSlider .carousel-inner {
    position: relative;
    width: 115%;
    overflow: hidden;
  }

  .slider-buttons .btn-floating-right {
    position: absolute;
    right: -45vw !important;
  }

  .btnfContainer h1,
  .btnsContainer h1 {
    font-size: 5rem !important;
  }
}

/*  crousel end */

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

.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 {
  background: var(--whiteColor) !important;
}

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

.card-title {
  text-align: center;
  text-transform: uppercase;
  margin: 15px 0px;
  font-size: 2rem;
  color: var(--primaryColor);
  font-family: "Sobread";
}

.card-body {
  position: absolute;
  bottom: -1rem;
  padding: unset !important;
}

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

.card-body a {
  text-align: center !important;
  display: block;
  font-size: 25px;
  color: var(--blackColor) !important;
  width: 30px;
  height: 30px;
  background-color: var(--primaryColor);
  border-radius: 50%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.card-body a:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor) !important;
}

.card-body a span {
  color: var(--whiteColor) !important;
  font-size: 1.5rem;
}

.prodSlider .col-lg-5:nth-child(1) {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

.prodSlider h1 {
  text-align: center;
  color: var(--whiteColor);
  font-size: 7rem;
  line-height: 5.6rem;
}

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

.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;
  position: fixed;
  top: 66px;
  right: 28px;
  transition: all linear 0.3s;
  z-index: 111;
  transform: translateY(-150%);
  padding: 15px 0px 0px 0px;
}

.entryDrawerContainer {
  width: 288px !important;
}

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

.entryDrawerContainer.activeDrawer {
  transform: translateY(31%) !important;
}

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

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

.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(--blackColor);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.categoryBox p {
  color: var(--whiteColor);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

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

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

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

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

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

.plus svg path:hover {
  fill: var(--primaryColor) !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(--primaryColor) !important;
}

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

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

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

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

body {
  color: #fff !important;
  padding: 0;
  margin: 0;
}

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

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

footer img {
  width: 3vw;
}

footer .social-icons img {
  /* width: 10vw; */
}

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

.customColorClass .timeHighLight h4,
.customColorClass .timeHighLight p,
.customColorClass .timeHighLight {
  color: var(--secondryColor) !important;
  /* animation: glower2 3000ms infinite; */
}

.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:hover circle {
  fill: var(--whiteColor) !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;
  font-weight: 300;
  font-family: cursive;
}

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

#ingsupp {
  width: 500px !important;
}

#ingsupp .row {
  width: 100% !important;
}

#ingsupp .row .col-4 ul.d-flex {
  max-width: 500px !important;
}


.linkPageContainer .nav-pills {
  margin-top: 50px;
  display: flex;
  /* justify-content: center; */
}

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

#zonePage .btnSliders .owl-dots {
  display: none;
}

#zonePage .btnSliders .owl-dots:nth-child(3) {
  display: block !important;
}

.leaflet-popup .leaflet-popup-content-wrapper {
  background: #B2B5BE;
}

.leaflet-popup .leaflet-popup-close-button {
  color: #000 !important;
}

.leaflet-popup-pane p {
  color: var(--whiteColor);
}

@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");

@font-face {
  font-family: CeraRoundPro;
  src: url(../fonts/Fontspring-DEMO-ceraroundpro-regular.otf);
}

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

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

@font-face {
  font-family: SouthGardens;
  src: url(../fonts/South-Gardens-Personal-Use.ttf);
}

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

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

@font-face {
  font-family: freescript;
  src: url(../fonts/FREESCPT.TTF);
}

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

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

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

@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: Mind-Boggle;
  src: url(../fonts/Mind-Boggle.otf);
}

@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: #262626;
  --customPink: #e60092;
  --primaryColor: #fff600;
  --secondryColor: #fff600;
}

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

#intro-page {
  padding: 0;
  margin: 0;
}

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

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

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

html {
  scroll-behavior: smooth;
}

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

.hideOverFlow {
  overflow: hidden !important;
}

ul {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

.form-control {
  /* background-color: var(--lightCustomGrey); */
  background: none !important;
  color: var(--whiteColor) !important;
  padding: 1rem !important;
}

input.form-control::placeholder {
  color: #606161 !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(25%, 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(--greyColor);
  width: 25%;
  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: 50%;
}

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

.mainHeroNav {
  background: transparent;
  box-shadow: unset;
  transition: background 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.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: flex-start;
  width: 100%;
}

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

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

nav.mainNav a {
  font-size: 1.3rem !important;
  font-family: "Sobread";
  text-transform: uppercase;
  color: var(--darkBlue);
  transition: all linear 0.3s;
  position: relative;
  font-weight: normal;
  letter-spacing: 3px;
  transition: all 0.3s linear;
}

nav.mainNav a.glow {
  color: var(--primaryColor) !important;
}

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

.centerNavLink ul li {
  position: relative;
}

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

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

a.navTel {
  position: relative;
  font-family: "CompactaB" !important;
  margin-right: 5vw;
}

a.navTel span img {
  width: 30px;
  /* transform: rotate(230deg); */
  left: -1.1rem;
  position: relative;
}

a.navTel svg {
  width: 30px;
  transform: rotate(230deg);
  left: -1.1rem;
  position: relative;
}

a.navTel svg:hover path {
  fill: var(--whiteColor);
}

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

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

a.userIcon svg {
  width: 20px;
}

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: 22px;
  height: 4px;
  background: var(--primaryColor);
  display: block;
  border-radius: 10px;
}

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

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

nav.mainNav button: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: 68vh;
  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;
}

a.userIcon svg path,
a.userIcon2 svg path {
  fill: var(--primaryColor) !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(--primaryColor);

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

a.btn.normalBtn,
button.btn.validateBtn {
  width: 31vw;
  /* text-align: center; */
  /* margin: 0px auto; */
  margin: 8px 53px 7px 89px;
  background: var(--primaryColor) !important;
  color: var(--whiteColor);
  padding: 0.8rem 0;
  border-radius: 10px;
  font-size: 1.1rem;

  border: 1px solid var(--primaryColor) !important;
}

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

.formActionBtn button.btn.validateBtn:hover {
  background: var(--whiteColor) !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: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(7500%) hue-rotate(197deg) brightness(92%) contrast(108%);
}

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

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

span.TotalCartItemsAndPrice {
  font-size: 13px;
  margin-left: 6px;
  display: flex;
  text-align: left;
  padding-left: 20px;
  flex-direction: column;
  align-items: center;
}

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

.validateBtnPrimary button.btn.validateBtn .row {
  display: flex;
  align-items: center;
  color: var(--blackColor);
}

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

.sliderContainerBottom {
  background-color: var(--blackColor);
}

.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 {
  text-align: left !important;
  background: linear-gradient(to right, #000000 50%, #fff600 50%);
}

.mainCategoriess .categoryBox p {
  font-size: 2.45rem;
}

.mainCategoriess .container-fluid {
  background: url(../img/topbtnbg.png) center center no-repeat;
  background-size: cover;
}

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;
  text-align: center;
  font-family: "Sobread";
}

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

.categoryBox .catProdImg {
  transition: transform 0.3s ease-in-out;
}

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

h3.catTitle {
  font-size: 1.6rem;

  color: var(--primaryColor);
  margin-top: 2rem;
}

.categoryBox:hover {
  transform: scale(1);
}

/* home page categories end  */

/* footer code start */

footer.footer {
  display: block;
  width: 100%;
  color: var(--blackColor);
  padding: 12.5vw 0px 0px 0px;
  position: relative;
  z-index: 111;
}

footer.footer h2 {
  font-family: "Sobread";
  margin-bottom: 0.3vw !important;
  font-size: 2.7vw !important;
}

footer.footer .last-third-section {
  margin-bottom: 3vw;
}

footer.footer p.bottomTxt {
  padding: 1.5vw 0px;
  margin: 0px;
  border-top: 1px solid var(--blackColor);
}

footer.footer p.bottomTxt a {
  color: var(--blackColor);
}

.footerDetailArea {
  background: var(--greyColor);
  padding-top: 5rem;
  padding-bottom: 5rem;
  border-top: 1px solid var(--primaryColor);
}

.footerDetailArea .container-fluid .row {
  width: 90% !important;
  margin: auto;
}

.footerDetailArea .container-fluid .row .col-lg-4 {
  text-align: center;
}

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

.storeIcons a {
  margin: 0 0.5rem;
}

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

.ftTxtContainer h2 {
  font-size: 2.3rem !important;
  color: var(--primaryColor);
  margin-bottom: 10px;
  font-family: "Sobread";
  font-weight: normal !important;
  letter-spacing: 2px;
}

.ftTxtContainer p {
  font-size: 1.3rem;
  color: var(--whiteColor);
  font-family: "Poppins";
}

.ftBotttomRow {
  background: #303030;

  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 1.5rem 0;
}

.card-img-top {
  width: 96% !important;
}

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

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

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

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

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

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

.linkPageTxtDetails span img[src="img/arrow-left-Bold.svg"] {
  margin: 3rem 0px 0px 0px;
}

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

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

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

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

.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 .form-control {
  padding: 0px 1rem !important;
}

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

.takeAwayContainer .popupHeadingIcon h5 a {
  color: var(--blackColor) !important;
}

.takeAwayContainer .popupHeadingIcon span svg path {
  fill: var(--blackColor);
}

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

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

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

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

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

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

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

.popupHeadingIcon span svg path {
  fill: var(--blackColor);
}

.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: 2rem 0;
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}

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

.delTakeInnerContainer .col-lg-6 {
  display: flex;
}

.adressAndDeliveryBtns h2.nomralDetail {
  color: var(--blackColor);
  font-size: 1.2rem;

  margin: 0;
}

.adressAndDeliveryBtns h2.nomralDetail span {
  display: block;

  font-size: 1rem;
}

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

.takeAwayDetailBox {
  background: #fff;
  border-radius: 10px 0 0 10px;
  width: 100%;
}

.deliveryDetailBox {
  background: var(--primaryColor);
  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\(--gray-dark;
  padding: 1rem;
  border-radius: 0px;
  text-align: center;
  margin: 1rem 0;
  top: 0;
  transition: all linear 0.3s;
}

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

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

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

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

p.prodDetail {
  color: var(--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; */
  /* height: 110px; */
  justify-content: center;
  align-items: flex-end;
  align-content: flex-end;
}

.poductExtra ul,
.cutsomProdSizes ul,
.poductSizesSimple ul {
  background: var(--bs-gray-800);
  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;
  flex-wrap: wrap;
}

.poductExtra ul {
  justify-content: flex-start;
  padding-left: 3rem !important;
}

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


@media (max-width: 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(--blackColor) !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(--primaryColor);
  /*! 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 0px;
  color: var(--darkBlue);
  font-size: 1.1vw;
  position: relative;
}

.prodPriceAndAddBtn .prodTypeBtns a {
  font-size: 1vw;
}

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

  .popupDiv h1 {
    font-size: 1.2rem !important;
  }
}

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

.prodTypeBtns button.btn.closeProdTypeBtn span svg path {
  fill: var(--blackColor);
}

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: 40%;
  position: absolute;
  right: -1px;
  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(--primaryColor);
  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(--primaryColor);
  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(--blackColor);
}

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

#zoneRechargement .linkPageTxtDetails .mx-xxl-5 {
  display: flex;
  justify-content: space-around;
}

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

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

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(--blackColor) !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(--blackColor) !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 span.btnIcon svg path {
  fill: var(--blackColor);
}

button.btn.addToCartCustom:hover {
  background: var(--whiteColor) !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(--whiteColor) !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: 100%;
  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: 3rem auto;
  text-align: center;
  color: var(--primaryColor);

  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

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

.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(--whiteColor) !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: 1rem 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: -1px;
  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: 20px;
  height: 20px;
  left: -2px;
  z-index: 5;

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

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

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

.checkBoxNLbl label span,
.radioBoxNLbl label span {
  font-size: 1rem;
  margin-left: 14px;
  color: var(--whiteColor);

  position: relative;
}

.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) {
  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: 25%;
  }

  .centerNavLink {
    display: none;
  }

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

.linkPageTxtDetails .CustomMapMsgBoxx p {
  color: var(--blackColor) !important;
}

.linkPageTxtDetails h2.linkPageHeading {
  color: var(--primaryColor);
  font-size: 1.75rem !important;

  text-transform: uppercase;
}

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

  text-transform: uppercase;
}

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

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

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

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

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

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: 0px;
  border: 1px solid #b0b0b0 important;
  border-color: #b0b0b0;
  cursor: pointer;
  user-select: none;
  border-radius: 50px;
}

.select-items div {
  padding: 1rem !important;
}

/*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: 40px;
  outline-color: var(--primaryColor);
  margin: 0 5px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
}

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

.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(--primaryColor);
  font-size: 1rem;
}

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

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

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

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

.cartIcon img {
  width: 27px;

}

.cartIcon img:hover {
  /* filter: invert(1) !important; */
}

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

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

.customRadio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 18px;
  -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(--primaryColor);
}

/* 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 #fff600;
  color: var(--primaryColor) !important;
}

.customRadio input:checked+label {
  /* background-color: #f9f9f9; */
  border: 5px solid #fff600;
  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 #fff600;
  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 #fff600;
  color: var(--primaryColor);
}

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

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

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

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

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

.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(--blackColor);
  font-size: 13px;
}

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

.BtnFull:hover {
  background-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: 3rem;
}

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

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

  .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 #fff600, 0 0 20px #fff600, 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 #fff600, 0 0 30px #fff600, 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);
  width: 75px;
  line-height: 34px;
  font-size: 42px;
}

p.pizzaName {

  line-height: 34px;
  width: 20px;
  text-align: right;
}

.arrow-img {
  width: 6%;
  height: 10%;
  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(--primaryColor);
}

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

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

.CustomCartImagee {
  z-index: 0;
  transform: translate(-77px, 10px);
  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(--primaryColor);
}

.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: 500px !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);
  font-size: 1vw !important;
}

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

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

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

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;
  overflow-x: hidden;
  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(--blackColor) !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(--primaryColor) !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(--primaryColor); */
  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: var(--blackColor);
}

.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: var(--primaryColor);
  /*! background-size: cover; */
  padding: 2vw 0px 0px 0px;
  padding-right: 0px;
  padding-left: 0px;
  z-index: 11111;
  position: relative;
  margin: -8rem 0px 0rem 0px;
}

.menuAds .topTextCaption {
  margin-bottom: 7vw;
}

.menuAds .topTextCaption h1 {
  text-align: center;
  line-height: 1.3vw;
}

.menuAds .topTextCaption h1 .span1,
.menuAds .topTextCaption h1 .span2 {
  font-family: "Sobread";
}

.menuAds .topTextCaption h1 .span1 {
  background: url(../img/whiteBg.png) center center no-repeat;
  background-size: cover;
  color: var(--blackColor);
  font-size: 2.7vw;
  width: 21vw;
  display: block;
  margin: 0px auto;
  padding: 1.4vw 0px 0.8vw 0px;
}

.menuAds .topTextCaption h1 .span2 {
  color: var(--blackColor);
  font-size: 4vw;
}

.menuAds .topTextCaption h1 .span3 {
  font-family: "AmazingKids";
  color: var(--whiteColor);
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  font-size: 7vw;
  top: 2.5vw;
  position: relative;
}

.menuAds .card {
  background-color: transparent !important;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  border: unset !important;
}

.menuAds .card:hover img {
  transform: scale(1.05);
}

.menuAds .card .borderImg {
  display: none;
}

.menuAds .card:hover .borderImg img {
  transform: scale(1);
  transition: filter 0.3s ease-in-out;
}

.menuAds .imgContainer img {
  position: relative;
  top: -30px;
}

.menuAds .card img {
  transition: transform 0.1s ease-in-out;
}

.menuAds .card .imgContainer {
  /* position: absolute;
  top: 5rem; */
}

.menuAds .card .txtContainer h1 {
  transition: background-color 0.3s ease-in-out;
  font-family: "AmazingKids";
  color: var(--whiteColor);
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: black;
}

@media screen and (max-width: 1600px) {
  .menuAds .card .txtContainer h1 {
    font-size: 4vw !important;
  }

  .menuAds .card .txtContainer a {
    font-size: 2vw !important;
  }
}

.menuAds .card:hover .borderImg img {
  filter: sepia(100%) saturate(100) hue-rotate(348deg) brightness(76%) contrast(160%);
}

.menuAds .card .txtContainer {
  font-family: "Sobread";
  width: 92%;
  text-align: center;
  line-height: 2rem;
  top: -5vw;
  position: relative;
}

.menuAds .card .txtContainer h1 {
  font-size: 4vw;
}

.menuAds .card .txtContainer a {
  color: var(--blackColor);
  font-size: 2rem;
  padding: 3px 1rem;
  transition: background 0.3s ease-in-out, color 0.3s ease-in-out;
  position: relative;
  top: -1rem;
  font-family: "CeraRoundPro";
}

.avec {
  background-image: url(../img/avec-bg.png);
  background-position: center -30px;
  margin: 80px auto 0px auto;
  padding-top: 50px;
  color: var(--blackColor);
}

.avec h1 {
  font-family: impact;
  text-align: center;
  margin-top: 130px;
}

.avec p {
  text-align: center;
}

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

.prodSlider {
  padding: 8rem 0px 0px 0px;
  color: var(--blackColor) !important;
  background: url(../img/footerBg.png) center top repeat;
  /*! background-size: cover; */
  /*! display: flex; */
  justify-content: space-evenly;
  position: relative;
  z-index: 30;
}

.prodSlider .footerDetailArea {
  background: unset !important;
}

.prodSlider h1 {
  font-family: "Sobread";
  font-size: 60px;
}

.prodSlider p {
  color: var(--whiteColor);
  text-align: center;
  font-family: "Sobread";
}

.prodSlider .footerDetailArea p {
  text-align: left !important;
  font-family: "Poppins";
  font-weight: normal;
}

.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 !important;
  width: 100%;
  overflow: hidden;
  height: 20rem;
  /* top:-10rem; */
}

.prodSlider .carousel-inner .card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border: 3px solid var(--primaryColor);
  background: transparent;
  border-radius: 0.6rem !important;
  position: relative;
  padding: 5px;
  height: 15rem;
  top: -6rem;
}

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

.slider-buttons .btn-floating-left {
  position: absolute;
  z-index: 111;
  left: -6rem;
}

.slider-buttons .btn-floating-right {
  position: absolute;
  right: -39vw !important;
  z-index: 2222;
}

@media (max-width: 1510px) {
  .prodSlider .carousel-inner {
    position: relative;
    width: 115%;
    overflow: hidden;
  }

  .slider-buttons .btn-floating-right {
    position: absolute;
    right: -45vw !important;
  }

  .btnfContainer h1,
  .btnsContainer h1 {
    font-size: 5rem !important;
  }
}

/*  crousel end */

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

.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 {
  background: var(--whiteColor) !important;
}

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

.card-title {
  text-align: center;
  text-transform: uppercase;
  margin: 15px 0px;
  font-size: 2rem;
  color: var(--primaryColor);
  font-family: "Sobread";
}

.card-body {
  position: absolute;
  bottom: -1rem;
  padding: unset !important;
}

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

.card-body a {
  text-align: center !important;
  display: block;
  font-size: 25px;
  color: var(--blackColor) !important;
  width: 30px;
  height: 30px;
  background-color: var(--primaryColor);
  border-radius: 50%;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.1s ease-in-out, color 0.1s ease-in-out;
}

.card-body a:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor) !important;
}

.card-body a span {
  color: var(--whiteColor) !important;
  font-size: 1.5rem;
}

.prodSlider .col-lg-5:nth-child(1) {
  display: flex;
  justify-content: center;
  margin-top: 6rem;
}

.prodSlider h1 {
  text-align: center;
  color: var(--whiteColor);
  font-size: 7rem;
  line-height: 5.6rem;
}

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

.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;
  position: fixed;
  top: 66px;
  right: 28px;
  transition: all linear 0.3s;
  z-index: 111;
  transform: translateY(-150%);
  padding: 15px 0px 0px 0px;
}

.entryDrawerContainer {
  width: 288px !important;
}

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

.entryDrawerContainer.activeDrawer {
  transform: translateY(31%) !important;
}

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

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

.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(--blackColor);
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.categoryBox p {
  color: var(--whiteColor);
  font-size: 0.9rem;
  letter-spacing: 2px;
}

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

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

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

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

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

.plus svg path:hover {
  fill: var(--primaryColor) !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(--primaryColor) !important;
}

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

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

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

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

body {
  color: #fff !important;
  padding: 0;
  margin: 0;
}

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

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

footer img {
  width: 3vw;
}

footer .social-icons img {
  /* width: 10vw; */
}

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

.customColorClass .timeHighLight h4,
.customColorClass .timeHighLight p,
.customColorClass .timeHighLight {
  color: var(--secondryColor) !important;
  /* animation: glower2 3000ms infinite; */
}

.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:hover circle {
  fill: var(--whiteColor) !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;
  font-weight: 300;
  font-family: cursive;
}

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

.linkPageContainer .nav-pills {
  margin-top: 50px;
  display: flex;
  /* justify-content: center; */
}

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

#zonePage .btnSliders .owl-dots {
  display: none;
}

#zonePage .btnSliders .owl-dots:nth-child(3) {
  display: block !important;
}

.leaflet-popup .leaflet-popup-content-wrapper {
  background: #000;
}

.leaflet-popup .leaflet-popup-close-button {
  color: #fff !important;
}

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

#zoneRechargement .prodImagWithIngContainer .order-0 {
  display: none !important;
}

h5.modal-title {
  color: var(--primaryColor);
}

.modal-header .modal-title {
  color: var(--blackColor);
}

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

.formShadowContainer table td span {
  color: var(--whiteColor) !important;
}

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

ul[style="width:700px !Important;"] {
  padding-right: 100px !important;
}

.userFormContainer div.form-control.rounded-pill.customInput {
  height: 60px;
}

.select-items div,
.select-selected {
  margin-top: 3px;
  background: none;
}

.select-selected {
  margin-top: 17px;
  background: none;
  margin-left: 1rem;
}

.formShadowContainer table td font[color="#000"] {
  color: #fff;
}

.formShadowContainer a.click-app {
  color: var(--primaryColor);
}

#mainContentBox>div.linkPageContainer>div>div>div>p:nth-child(4) {
  color: #fff !important;
}

.cartDrawerContainer button.btn.validateBtn {
  width: 600px !important;
  margin: 8px 53px 7px 140px !important;
}

.prodImagWithIngContainer [data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  transform: none !important;
}

.prodImagWithIngContainer [data-aos="zoom-in-up"] {
  transform: none !important;
}

.CustomColorPizza ul li {
  width: 60%;
}

.sideBarContainer::-webkit-scrollbar {
  display: none;
}

input[type="date"] {
  color-scheme: dark;
}

.extraList .cartItemIncDec img {
  order: 1;
  user-select: none;
}

.extraList .cartItemIncDec .tabTxt {
  order: 2;
  width: 65%;
  user-select: none;
}

.extraList .cartItemIncDec .minus {
  order: 3;
  margin-left: 20px;
}

.extraList .cartItemIncDec input {
  order: 4;
}

.extraList .cartItemIncDec .plus {
  order: 5;
}

.btnfContainer {
  background: url(../img/btn-f-bg.png) center center no-repeat;
  background-size: cover;
}

.btnfContainer h1 {
  color: var(--primaryColor);
  font-size: 6rem;
}

.btnsContainer p {
  color: var(--blackColor);
}

.btnfContainer h1,
.btnsContainer h1 {
  font-size: 7rem;
  margin: -2.5rem 0px 0px 0px;
}

.catProdTxt {
  padding-top: 1.6rem;
}

.btnsContainer,
.btnfContainer {
  display: flex;
  align-items: center;
}

.footer-social-icons img {
  width: 2.8rem;
}

.footer-social-icons a {
  margin: 0px 0.5rem;
}

.social-icons a {
  margin: 0px 0.2vw;
}

.sliderTxtSection {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.sliderTxtSection p {
  font-size: 2.3rem;
  line-height: 3.4rem;
  letter-spacing: 2px;
}

@media (max-width:1550px) {
  .sliderTxtSection p {
    font-size: 2.8rem;
  }

  .prodSlider .col-lg-5:nth-child(2) {
    margin-left: 6%;
  }
}

@media (max-width:1450px) {
  .sliderTxtSection p {
    font-size: 2.5rem;
  }
}

.card-top-img {
  width: 100%;
  border-radius: 0.6rem;
  height: 55%;
  display: flex;
  justify-content: center;
  background-color: var(--primaryColor);
  position: relative;
}

.card-top-img img {
  position: absolute;
  top: -4rem;
}

.iconglasses,
.iconfish,
.icontree {
  position: absolute;
}

.iconfish {
  top: -25rem;
  right: 54rem;
  width: 60%;
  /* background: lightblue; */
}

.iconfish img {
  width: 6rem;
  animation: moveFish 5s infinite alternate;
  offset-path: path("M723.58,327.67c0,0,51.74,29.49,113.21,2.87c0,0,54-25.85,114.13,1.72c0,0,52.28,23.74,109.53-4.98 c0,0,49.98-20.3,103.02,4.4c0,0,24.36,11.34,51.63,9.98"
    );
}

@keyframes moveFish {
  100% {
    offset-distance: 100%;
  }
}

.icontree {
  right: 1rem;
  top: 7rem;
  animation: mildRotate 3s ease-in-out 1s infinite;
}

.icontree img {
  width: 10rem;
}

.iconglasses {
  left: 4rem;
  top: absolute;
  top: 6rem;

  animation: rotateHoriz 3s ease-in-out infinite;
}

.iconglasses img {
  width: 9rem;
}

.bigSandwich {
  background: url(../img/bigSandwichBg.png) center center no-repeat #161616;
  background-size: cover;
  padding: 16vw 0px 12vw 0px;
  position: relative;
  z-index: 2;
}

.bigSandwich .txtSection h1 {
  font-family: "Sobread";
  font-size: 6vw;
  font-weight: normal;
  text-align: center;
  line-height: 5.1vw;
  position: relative;
}

.bigSandwich .txtSection h1 span {
  padding: 0.2rem 0.8rem;
}

.bigSandwich .txtSection h1 span:nth-child(1) {
  color: var(--primaryColor);
}

.bigSandwich .txtSection h1 span:nth-child(3) {
  color: var(--whiteColor) !important;
  font-family: "AmazingKids";
  font-size: 7vw;
  word-spacing: -10px;
  white-space: nowrap;
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: black;
}

.bigSandwich .txtSection h1 span:nth-child(5) {
  color: var(--blackColor);
}

.bigSandwich .row {
  margin-top: 40px !important;
}

.txtSection h3 {
  color: var(--primaryColor);
  font-family: "Sobread";
  font-size: 2vw;
  letter-spacing: 1px;
  line-height: 0vw;
  margin-top: -2vw;
}

.txtSection.blackArea h3 {
  color: var(--primaryColor) !important;
}

.txtSection a {
  color: var(--whiteColor) !important;
  font-family: "AmazingKids";
  font-size: 2vw;
  letter-spacing: 1px;
  padding-top: 0px;
  display: block;
}

.txtSection a {
  font-size: 4vw;
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: black;
}

.txtSection a:hover {
  color: var(--whiteColor) !important
}



.button-section3 a {
  color: var(--whiteColor) !important;
  font-family: "AmazingKids";
  font-size: 2vw;
  letter-spacing: 1px;
  padding-top: 0px;
  display: block;
}

.button-section3 a {
  font-size: 4vw;
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: black;
}

.button-section3 a:hover {
  color: var(--whiteColor) !important
}



.imgSection .smallIcons div {
  position: absolute;
}

.mainSandiwch {
  position: absolute;
  bottom: -25rem;
  width: 60rem;
}

.mainSandiwch img {
  width: 100%;
}

.sunImg {
  left: -31rem;
  bottom: -19rem;
  animation: rotate 15s linear infinite;
}

.sunImg img {
  width: 9rem;
}

.cupImg {
  left: -17rem;
  bottom: -11rem;
  animation: mildRotate 3s ease-in-out 1s infinite;
}

.cupImg img {
  width: 11rem;
}

.treeImg {
  bottom: 3rem;
  left: 9rem;
  animation: mildRotate 3s ease-in-out 1s infinite;
}

.sunImg2 {
  right: 7rem;
  top: -1rem;
  animation: rotate 15s linear infinite;
}

.sunImg2 img {
  width: 12rem;
}

.maskImg {
  right: -10rem;
  bottom: 10rem;
  animation: stretch 2s ease-in-out 1s infinite;
}

.maskImg img {
  width: 10rem;
}

.shapeImg {
  right: -10rem;
  bottom: 1rem;
  animation: rotateHoriz 3s ease-in-out infinite;
}

.shapeImg img {
  width: 6rem;
}

.topHeroSection {
  background: url(../img/topHeroBg.png) center bottom no-repeat;
  background-size: cover;
  top: 8rem;
  z-index: 3;
  position: relative;
  padding: 4rem 0px 7rem 0px;
}

.topHeroSection .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.topHeroSection h1 {
  text-align: center;
  font-family: "Sobread";
}

.megaHeading {
  position: relative;
}

.megaHeading h1 {
  color: var(--customPink);
  width: max-content;
  margin: 0px auto;
  font-size: 13rem;
  line-height: 10rem;
  border-bottom: 10px dashed var(--customPink);
}

.megaHeading h1.textShadow {
  color: transparent !important;
  -webkit-text-stroke: 2px white;
  border-bottom: unset !important;
  position: absolute;
  top: -3px;
  /* left: 24.5%; */
  font-size: 13.5rem;
  width: 100%;
}

.megaBurger {
  display: flex;
  justify-content: center;
  top: 1rem;
  position: relative;
}

.megaBurger img {
  transition: transform 0.2s ease-in-out;
}

.megaBurger:hover img {
  transform: scale(1.03);
}

.megaBurger img {
  width: 39rem;
}

.smallCup {
  top: 0rem;
  left: 20%;
  animation: 3s ease-in-out 1s infinite normal none running mildRotate;
}

.smallHead {
  top: -3rem;
  right: 20%;
  animation: mildRotate 3s ease-in-out infinite;
}

.miniHeading h1 {
  font-size: 4.5rem;
}

.bannerSection {
  padding: 0rem 0px 8rem 0px;
  z-index: 2;
  position: relative;
}

.bannerSection .textContainer {
  /*! transform: rotate(-5deg); */
}

.bannerSection .txtSection {
  /*! top: -7rem; */
  /*! right: 4rem; */
}

.fHeading h1 {
  color: var(--blackColor);
  font-family: "Sobread";
  text-align: center;
  font-size: 7.4vw;
  /*! right: -3.5rem; */
  position: relative;
  line-height: 5rem;
}

.fHeading h1 span {
  font-family: "AmazingKids";
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--blackColor);
  color: var(--whiteColor);
  font-size: 9.5vw;
  top: 1vw;
  position: relative;
}

.fHeading h3 {
  color: var(--whiteColor)
}



.fHeading a img:hover {
  transition: 500ms ease scale;
  scale: 1.1;
}

.sHeading h1 {
  font-family: "Sobread";
  text-align: center;
  color: var(--primaryColor);
  font-size: 10rem;
  line-height: 6rem;
  z-index: 1;
  position: relative;
}

.tHeading {
  top: 0.1rem;
  position: relative;
  z-index: 2;
}

.tHeading h1 {
  text-align: center;
  font-size: 7rem;

  font-family: "SouthGardens";
  color: var(--whiteColor);
}

.bannerSection .imgContainer {
  /*! width: 50rem; */
  /*! bottom: -6.5rem; */
  /*! position: relative; */
  /*! left: 18rem; */
}

.bannerSection .imgContainer:hover {
  /* transform: rotate(2deg); */
}

.ltree {
  position: absolute;
  top: 2rem;
  animation: mildRotate 3s ease-in-out 1s infinite;
}

@keyframes mildRotate {
  0% {
    transform: rotate(0deg);
  }

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

  100% {
    transform: rotate(0deg);
  }
}

.ltree img {}

.lheart {
  position: absolute;
  top: 0rem;
  left: 12rem;
}

.lheart img {
  animation: stretch 2s ease-in-out 1s infinite;
}

@keyframes stretch {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.lsun {
  position: absolute;
  right: 1rem;
}

.lsun img {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* @keyframes moveLeftRight {
  0% {
    transform: translateX(0rem);
  }
  50% {
    transform: translateX(-12rem) rotateY(180deg);
  }
  100% {
    transform: translateX(12rem);
  }
} */
@keyframes rotateHoriz {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.colorIcons,
.littleIcons,
.smallIcons {
  display: none
}

.fHeading {
  /* padding-top: 120px; */
}

.bikeSection h1 {
  color: var(--primaryColor);
  font-family: "Sobread";
  font-size: 7.5vw;
  line-height: 6vw;
  letter-spacing: 1px;
  text-align: center;
}

.bikeSection h1 span {
  color: var(--whiteColor);
  font-size: 5vw;
  position: relative;
  left: -6.5vw;
}

.bikeSection h2 {
  color: var(--whiteColor);
  font-family: Mind-Boggle;
  font-size: 5vw;
  line-height: 6vw;
  letter-spacing: 1px;
  text-align: center;
  left: -7.5vw;
  position: relative;
}

.bikeSection a {
  color: var(--blackColor);
  font-family: "Sobread";
  font-size: 40px;
  letter-spacing: 1px;
  text-align: center;
  display: block;
}

.bikeSection a:hover {
  color: var(--blackColor)
}


.bikeSection h2 span {
  font-family: "AmazingKids";
  text-align: left !important;
}

.bikeSection {
  background: #161616;
  padding: 0px 0px 4vw 0px;
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 3vw;
  background-size: cover;
  z-index: 10;
  position: relative;
  margin: 0rem 0px -16vw 0px;
}

.bikeSection .txtContainer {
  padding-top: 4vw;
}

.button-bike img {
  width: 15%;
  padding-left: 30px;
}

.button-bike:hover img {
  position: relative;
  left: 30px;
}

.button-bike {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

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



  .fHeading h1 {
    /* font-size: 5rem !important; */
    /* line-height: 4rem !important; */
  }

  .fHeading {
    /* padding-top: 80px !important; */
  }


  .bikeSection a {
    font-size: 30px !important;
  }

  .application h1 {
    font-size: 35px !important;
  }
}


input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--primaryColor);
}

/* #Cartch h6.mt-2{
  width: 65px;
} */



@keyframes glower1 {

  0%,
  100% {
    text-shadow: 0 0 5px var(--black);
  }

  50% {
    text-shadow: 0 0 50px var(--black);
  }
}

@keyframes glower2 {

  0%,
  100% {
    text-shadow: 0 0 5px var(--primaryColor);
  }

  50% {
    text-shadow: 0 0 50px var(--primaryColor);
  }
}


#Cart a h3 {
  color: #cbbfa1;
}


.txtSection img {
  width: 40%;
  position: relative;
  top: -20px;
}

.button-section3 {
  padding-top: 2.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-section3 img {
  padding-left: 20px;
  width: 7vw;
  position: relative;
  top: 0px;
}

.button-section3:hover img {
  left: 40px;
}


.menuAds.bikeSection .col-lg-4 img {
  width: 27vw;
  left: -5vw;
  position: relative;
}

.sliderContainerBottom #multi-item-example>div>div>div>div {
  position: relative !important;
  top: 10rem !important;
}

.sliderContainerBottom #multi-item-example {
  position: relative;
  top: -3rem;
}


.application-img img:hover {
  scale: 1.1;
  transition: 300ms ease all;
}

.application-img img {
  width: 14.5vw;
  margin-top: 2vw;
  margin-right: 1vw;
}

.application-img {
  display: flex;
  justify-content: center;
  left: -8.5vw;
  position: relative;

}

.application h1 {
  font-family: cocogoose;
  font-size: 45px;
  color: var(--blackColor);
}


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

.userFormContainer form a:hover {
  color: var(--primaryColor);
}

.menuItems img[src="img/phone.svg"] {
  width: 5.5%;
}

/* Intro page start */
.map-wrapper.grade {
  background-color: #000;
  padding: 0 0% 8% 0%;
  margin-top: -4%;
  position: relative;
  /* background-image: url("../img/intro-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover; */
  background: #000;
  background-position: center -81px;
}

.bg-black {
  background-color: #000;
}

.intro-nav {
  background-color: #000;
  padding: 1%;
  box-shadow: 0px 0px 20px 0px #fff600;
  position: relative;
  z-index: 111;
}

.nav-logo {
  width: 48%;
}

.hamburger-img {
  width: 12%;
}

.nav-locationPin-img {
  width: 85%;
  margin-bottom: -5px;
}

.white-ellipse-img {
  width: 60px;
  margin-left: -10px;
}

.nav-text {
  color: var(--primaryColor);
  font-size: 25px;
  padding-right: 5px;
  margin-bottom: 0;
}

.map-wrapper {
  background-color: #000;
  padding: 0 0% 8% 0%;
  /* margin-top: 2%; */
  position: relative;
  /* background-image: url("../img/intro-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover; */
  background: #000;
  height: 38vw;
  background-position: center -81px;
}


.map-wrapper {
  background-color: #000;
  padding: 0%;
  /* margin-top: 2%; */
  position: relative;
  /* background-image: url("../img/intro-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover; */
  background: #000;
  width: 100vw;
  height: 700px;
  background-position: center -81px;
}

.map-wrapper iframe {
  height: 700px;
  width: 100%;
  position: relative;
}

.map-wrapper .form-area {
  position: relative;
  width: 85%;
  top: -19vw;
  left: 8vw;
}

.map-wrapper .form-area .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.form-area h5 strong {
  position: relative;
  top: -3rem;
}


.map-overlay {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 80vh;
  background-color: #000 !important;
  mix-blend-mode: multiply;
  opacity: 0.5;
  z-index: 0;
}


.map-overlay-text {
  font-family: "Sobread";
  font-size: 26px;
  padding-top: 12%;
  text-align: center;
}

.form-div {
  /* margin-top: 50px; */
}

.form-div button {
  font-family: "Sobread";
  font-size: 21px;
  padding: 7px 20px;
  border: none;
  background-color: #fff600;
}

.form-div form {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  margin-left: 8px;
  width: 100%;
  /* background-color: rgba(0, 0, 0, .5); */
}

.form-div form select {
  /* height: 30px; */
  background-color: white;
  border-radius: 4px;
  margin-bottom: 0;

  color: #000 !important;
  padding: 5px 5px 5px 10px;
  font-family: "Poppins";
  font-weight: 500;

}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.form-div form select::placeholder {
  font-weight: 300;
}

.target-icon {
  width: 30px;
}

.map-overlay-img {
  width: 40px;
}

.intro-section2 {
  position: relative;
}

.location-card {
  /* border-radius: 40px;*/
  border-radius: 0px;
  padding: 10px 15px;
  text-align: center;
}

.location-card-body-inner {
  position: absolute;
  top: 15%;
  left: 20%;
  text-align: center;
}

.location-card p:nth-child(2) {
  color: #fff600;
  font-family: "Sobread";
  font-size: 22px;
  height: 60px;
}

.location-card p:nth-child(3) {
  font-size: 18px;
  height: 70px;
}

.location-card p:nth-child(4) {
  font-size: 23px;
}

.location-card p:nth-child(4) span {
  color: #fff600;
}


.location-card :hover {
  color: #fff600;
}

.location-card button {
  font-family: "Sobread";
  font-size: 23px;
  border: none;
  background-color: #fff600;
  border-radius: 8px;
  padding: 12px 30px 10px 30px;
  color: #303030;
  margin-bottom: 10px;
  margin-top: 5px;
}

.location-card button:hover {
  background-color: #fff;
  transition: 200ms ease-in;
  color: #303030;
}

.location-card-wrapper {
  padding-top: 2%;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 40px;
  z-index: 10;
  position: relative;
}

.intro-section2 .video-section {
  margin-top: 5%;
  padding-bottom: 5%;
}

.intro-section2 div[class="row d-flex justify-content-center"] {
  margin: 0px 100px;
}

@media screen and (max-width:1600px) {
  .location-card-body {
    /* height: 401px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .location-card button {
    font-size: 18px;
  }

  .form-div button {
    font-size: 18px;
  }

}

@media screen and (max-width:1050px) {
  .nav-text {
    font-size: 17px;
  }

  .nav-logo {
    width: 60%;
  }

  .nav-locationPin-img {
    width: 65%;
  }

  .white-ellipse-img {
    width: 50px;
  }
}

@media screen and (max-width:992px) {
  .location-card-wrapper {
    margin-top: 0;
  }

  .map-overlay-text {
    font-size: 18px;
  }
}

@media screen and (max-width:768px) {
  .hamburger-img {
    width: 45px;
  }
}


.delivIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.8rem;
}

.delivIcons a:hover {
  scale: 1.1;
  transition: 300ms ease all;
}

.colorIcons+h1 {
  display: none;
}


.main-nav-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  width: 100% !important;
}

.main-nav-div button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  width: 200px;
  padding: 10px 10px;
  margin: 0px 20px;
  border-radius: 50px;
  border: 2px solid #fff;
  font-family: Poppins !important;
  color: var(--whiteColor);
  font-weight: bold;
}

.main-nav-div button.active,
.main-nav-div button:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
}

.main-nav-div button img {
  margin-right: 10px;
}

#custom-popup-1,
#custom-popup-2,
#custom-popup-3 {
  display: none;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 250, 250);
  height: auto;
  padding: 30px 20px 10px;
  /* z-index: 9999; */
  color: var(--blackColor);
  width: 650px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#custom-popup-1 {
  position: absolute;
  top: 20.5rem;
  left: 45vw;
}

#custom-popup-2 {
  position: absolute;
  top: 17.5rem;
  left: 58vw;
}

#custom-popup-3 {
  position: absolute;
  top: 17.5rem;
  left: 73vw;
}

#close-popup-1,
#close-popup-2,
#close-popup-3 {
  display: block;
  margin-top: 10px;
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 2rem;
  border: none !important;
  background: none;
}

#close-popup-3:hover,
#close-popup-1:hover,
#close-popup-2:hover {
  text-decoration: underline !important;
}

.popupDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}

.popupDiv h1 {
  color: var(--primaryColor);
  font-size: 1.4rem;
}

.popupDiv p {
  color: var(--black);
  font-size: 1.2rem;
}

.popup-left {
  width: 80%;
  height: 100px;
}

.popup-right {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.popup-right img {
  width: 70%;
}

.popup-right a {
  background: #c4c1c1;
  color: var(--blackColor);
  /* padding: 10px 20px; */
  border-radius: 10px;
  transition: all 1s;
}

#custom-popup-2 .popup-right a,
#custom-popup-3 .popup-right a {
  background: none;
  border-radius: 10px;
  transition: all 1s;
}

#custom-popup-3 .popup-left,
#custom-popup-2 .popup-left {
  width: 107%;
}

.popup-right a:hover {
  background: #000;
  color: var(--whiteColor);
  /* padding: 10px 20px; */
  border-radius: 10px;
}

.footer-links {
  background-image: url(../img/sec-5-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0px;
  display: flex;
  justify-content: space-evenly;
  min-height: 400px;
  align-items: center;
  flex-direction: column;
}



.footer-links a.active,
.footer-links a:hover {
  color: var(--blackColor);
  text-decoration: underline !important;
}

.coming-soon-shop-section {
  /* display: flex; */
  /* justify-content: center; */
  /* width: 1920px; */
}

.gif-section {
  margin: 0% 0 7%;
  padding: 0;
  /* width: 740px; */
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}


.gif-section img {
  position: relative;
  width: 100%;
}

.gif-section .location-card-wrapper {
  margin-top: 0px !important;
}

/* Intro page end */


/* franchise-page start */
#franchise-page {
  background-image: url("../img/text-background.png");
  overflow: hidden;
  background-color: #fff600;
}

.franchise-main.container-fluid,
.franchise-main .row {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.franchise-main img {
  width: 100%;
}

.franchise-section {
  padding: 50px 0px;
  color: var(--blackColor);
}

.franchise-section h2 {
  font-size: 30px;
  font-weight: 300;
  text-align: justify;
  padding: 10px 0px;
}

.franchise-section h3 span,
.franchise-section h2 span {
  font-weight: 900;
}

.franchise-section h3 span a,
.franchise-section h2 span a {
  color: var(--blackColor);
}

.franchise-section h3 span a:hover,
.franchise-section h2 span a:hover {
  color: var(--blackColor);
  text-decoration: underline !important;
}

.franchise-section h3 {
  text-align: center;
  padding: 20px 0px;
}

.franchise-main .mainSecText {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15vw;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.franchise-main .mainSecText img {
  width: 30%;
}

.franchise-main .mainSecText h1 {
  text-align: center;
  color: var(--white);
  font-size: 5rem;
  font-family: "Sobread";
}

.franchise-main .mainSecText h1.animate-txt {
  color: var(--primaryColor) !important;
  font-size: 5rem;
  font-family: "Sobread";
  text-align: center;
}

.ml10 {
  position: relative;
  font-weight: 900;
  font-size: 4em;
}

.ml10 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

.ml10 .letter {
  display: inline-block;
  line-height: 1em;
  transform-origin: 0 0;
  letter-spacing: 5px;
}

/* franchise-page end */

/* recrutement-page start */

#recrutement-page {
  min-height: 100vh;
  background-image: url("../img/text-background.png");
  overflow: hidden;
  background-color: #fff600;
}

.recrutement-main.container-fluid,
.recrutement-main .row {
  padding-right: 0px !important;
  padding-left: 0px !important;
}


.recrutement-main .mainSecText {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15vw;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.recrutement-main .mainSecText img {
  width: 30%;
}

.recrutement-main .mainSecText h1 {
  text-align: center;
  color: var(--white);
  font-size: 5rem;
  font-family: "Sobread";
}

.recrutement-main .mainSecText h1.animate-txt {
  color: var(--primaryColor) !important;
  font-size: 5rem;
  font-family: "Sobread";
  text-align: center;
}

.recrutement-section {
  padding: 50px 0px;
  color: var(--blackColor);
}

.recrutement-section h2 {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  font-family: "Sobread";
  padding: 10px 0px;
}

.recrutement-section h3 {
  font-size: 1.8rem;
  font-weight: 300;
  text-align: justify;
  padding: 10px 0px;
}

.recrutement-section h3 span {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Sobread";
}

.recrutementForm .inputDiv {
  padding-top: 30px;
}

.recrutementForm .inputDiv label {
  font-size: 1.5rem;
  padding-bottom: 10px;
}

.recrutementForm .inputDiv input {
  border: 1px solid #303030;
  color: var(--blackColor) !important;
}

.recrutementForm .inputDiv input {
  background: rgba(255, 255, 255, 0.5) !important;
}

.recrutementForm .inputDiv input[type="file"] {
  height: 100px;
  border-radius: 10px !important;
}

.recrutementForm .inputDiv input::placeholder {
  color: #a1a1a1 !important;
}

.recrutementForm button.recrutementBtn {
  color: var(--blackColor);
  background: var(--whiteColor) !important;
  border: 1px solid #000 !important;
  padding: 10px 20px;
  margin-top: 40px;
  font-size: 1.7rem;

}

.recrutementForm button.recrutementBtn a {
  color: var(--blackColor);
  background: var(--whiteColor) !important;

}

.recrutementForm button.recrutementBtn:hover,
.recrutementForm button.recrutementBtn:hover {
  color: var(--whiteColor);
  background: var(--blackColor) !important;

}

.recrutementForm button.recrutementBtn:hover a {
  color: var(--whiteColor) !important;
  background: none !important;

}


/* accueil page start*/
#accueil {
  overflow: hidden;
}

#intro-page video {
  position: relative;
  width: 100%;
}

.Slider-Sec {
  padding: 115px 0px 50px;

}

.Slider-Sec h1 {
  color: var(--blackColor);
  text-align: center;
  font-size: 4vw;
  font-family: "Sobread";
}

.accueil-page {
  width: 100vw;
  background-image: url("../img/text-background.png");
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -3%;
  align-items: center;
  display: flex;
  align-content: center;
  flex-direction: column;
}

.accueil-page img {
  position: relative;
  width: 95%;
  margin-top: -30px;
}

.accueil-page .swiper-slide {
  position: relative;
  display: flex;
  margin: 40px;
  justify-content: center;
  align-items: center;
}


.accueil-page .swiper-slide:hover {
  scale: 1.03;
  border-radius: 15px;
  border: 3px solid #ffffff85;
  top: 10px;
  left: 10px;
  z-index: 99999;

  transition: 300ms;
  position: relative;
}



.accueil-page .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.accueil-page .swiperNav2 {
  position: relative;
  top: -17vw;
}

.accueil-page .swiper-button-next {
  right: -5rem !important;
}

.accueil-page .swiper-button-prev {
  left: -5rem !important;
}

.accueil-page .swiper-button-next img,
.accueil-page .swiper-button-prev img {
  filter: invert(100);
  border-radius: 0px;
}

.accueil-page .swiper-button-next,
.accueil-page .swiper-button-prev {
  position: absolute !important;
  color: none !important;
  font-family: none !important;
}

.accueil-page .swiper-button-next:after,
.accueil-page .swiper-button-next:before {
  content: "";
  display: block;
  width: 100.667vw;
  height: 1.667vw;
  font-family: none !important;
}

.accueil-page .swiper-button-prev:after,
.accueil-page .swiper-button-prev:before {
  content: "";
  display: block;
  width: 1.667vw;
  height: 1.667vw;

}

.owl-dot {
  width: 20px;
  height: 20px;
  background: var(--blackColor);
}

.accueil-sec-two {
  background-size: cover;
  width: 100%;
  position: relative;
}

.accueil-sec-two .row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.accueil-sec-two .acc-secTwoTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.accueil-sec-two .acc-secTwoTxt h1 {
  font-size: 3vw;
  font-family: "Sobread";
  color: var(--primaryColor);
}

.accueil-sec-two .acc-secTwoTxt a {
  font-size: 2vw;
  font-family: "Sobread";
  background: var(--primaryColor);
  border-radius: 20px;
  padding: 10px 40px;
  letter-spacing: 4px;
  color: var(--blackColor);
  margin-top: 20px;
  transition: all 0.5s;
}

.accueil-sec-two .acc-secTwoTxt a:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
  animation: acc-btn 1.5s infinite;
}

@keyframes acc-btn {

  0%,
  100% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }
}

.accueil-sec-three p {
  margin-top: 0px;
}

.accueil-sec-three {
  padding: 35px 0px 75px;
}

.accueil-sec-three h1.top-txt {
  color: var(--whiteColor);
  text-align: center;
  font-size: 4vw;
  font-family: "Sobread";
  margin-bottom: 30px;
}

.accueil-sec-three h1.top-txt span {
  color: var(--whiteColor);
  text-align: center;
  font-size: 4vw;
  font-family: "Sobread";
}

.accueil-sec-three h1.top-txt span:nth-child(19),
.accueil-sec-three h1.top-txt span:nth-child(20),
.accueil-sec-three h1.top-txt span:nth-child(21),
.accueil-sec-three h1.top-txt span:nth-child(22),
.accueil-sec-three h1.top-txt span:nth-child(23) {
  color: var(--blackColor) !important;
}

.accueil-sec-three .acc-secThreeTxt a {
  font-size: 2vw;
  font-family: "Sobread";
  color: var(--blackColor);
  transition: all 1s;
}

.accueil-sec-three .acc-secThreeTxt a:hover {
  color: var(--whiteColor);
  text-decoration: underline !important;
}

.acc-sec-4 {
  padding: 50px 0px;
  background: url(../img/acc-sec-2-bg.png) center center no-repeat #000;
  background-size: cover;
  position: relative;
}

.acc-sec-4 .col-lg-4 {
  position: relative;
}

.acc-sec-4 .col-lg-4 img {
  border: 2px solid var(--primaryColor);
}

.acc-sec-4 .abs-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 111;
  width: 94.7%;
  height: 88%;
  border-radius: 20px;
}

.acc-sec-4 .abs-txt img {
  width: 250px;
  border: none;
}

.acc-sec-4 .abs-txt h1 {
  font-size: 1.6vw;
  font-family: "Sobread";
  color: var(--primaryColor);
  text-align: center;
  padding: 20px 0px;
}

.acc-sec-4 .abs-txt p {
  font-size: 1.2vw;
  color: var(--whiteColor);
  text-align: center;
}


.acc-sec-4 a {
  font-size: 1.4vw;
  font-family: "Sobread";
  background: var(--primaryColor);
  border-radius: 10px;
  padding: 10px 20px;
  color: var(--blackColor);
  transition: all 0.5s;
  position: relative;
  /* top:20px; */
  margin: 40px 30px 0px;
  display: block;
  text-align: center;
}

.acc-sec-4 a:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
}


.sec-4-txt h1 {
  font-size: 4vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding: 0px 0px;
}

.sec-4-txt h2 {
  font-size: 2.5vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding: 10px 0px;
}

.sec-4-txt h3 {
  font-size: 3vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding-bottom: 30px;
}

.sec-4-txt span {
  color: var(--primaryColor);
}

.acc-sec-5 {
  padding: 100px 0px;
  background: url(../img/sec-5-bg.png) center center no-repeat #000;
  background-size: cover;
  position: relative;
}

.sec-5-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sec-5-txt h1 {
  font-size: 4vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding: 0px 0px;
}

.sec-5-txt h2 {
  font-size: 2.5vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding: 10px 0px;
}

.sec-5-txt a {
  font-size: 2vw;
  font-family: "Sobread";
  background: var(--primaryColor);
  border-radius: 20px;
  padding: 10px 40px;
  letter-spacing: 4px;
  color: var(--blackColor);
  margin-top: 20px;
  transition: all 0.5s;
}

.sec-5-txt a:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
  animation: acc-btn 1.5s infinite;
}

.accueil-page .Slider-Sec .swiperNav2,
.accueil-page .mySwiper2 .swiper-wrapper .swiper-slide:nth-child(4),
.accueil-page .mySwiper2 .swiper-wrapper .swiper-slide:nth-child(5),
.accueil-page .mySwiper2 .swiper-wrapper .swiper-slide:nth-child(6) {
  display: none !important;
}

.ml2 {
  font-weight: 900;
  font-size: 3.5em;
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}

video {
  position: relative;
  width: 100%;
}



.accueil-sec-three .acc-secThreeTxt:hover {
  scale: 1.03;
  transition: 300ms;
}

.accueil-sec-three .acc-secThreeTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Sobread";
  color: var(--blackColor);
  font-size: 1.4rem;
}



/* accuial end */

/* recrutement start */


.recrutement-main.container-fluid,
.recrutement-section h2,
.recrutement-section h3 {
  display: none;
}

.recrutementForm[name="form1"] .container-fluid {
  justify-content: center;
  display: flex;
}

/* recrutement end */

#map-canvas>div.i4ewOd-pzNkMb-haAclf {
  background-color: rgb(46, 49, 47);
  display: none !important;
}


.hero-video {
  height: 100%;
}

.nav-logo img {
  width: 200px;
}


.shop-section {
  background-image: url(../img/Section-2-bg.jpg);
  padding: 5% 10%;
  background-repeat: no-repeat;
  margin-top: 4%;
  background-size: cover;

}

.location-card img:hover {
  transform: scale(1.01);
  transition: 0.5s;
}

.coming-soon-shop-section a img {
  width: 80% !important;
}

.coming-soon-shop-section a .coming-soon-img {
  width: 30vw !important;
}

.section-2-text {
  font-family: Sobread;
  text-align: center;

  h2 {
    font-size: 3.5rem;
    margin: 10px 0;
  }

  h4 {
    font-size: 2.5rem;
    margin: 10px 0;
  }

  h5 {
    margin: 10px 0;
    font-size: 2rem;
  }

  .container.Slider-Sec {
    width: 100% !important;
  }

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

  .image-section-text span {
    position: relative;
    background-image: url(../img/Vector\ 2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 17px;
    z-index: 999999;
  }
}

.cover-map-wrapper {
  background-image: url(../img/Map-background.png);
  height: 30px;
  position: relative;
  z-index: 999;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: flex;
}


#grade {

  .location-card {
    /* border-radius: 40px;*/
    border-radius: 0px;
    background-color: #303030;
    padding: 10px 15px;
    text-align: center;
  }

  .location-card p:nth-child(1) {
    color: #fff600;
    font-family: "Sobread";
    font-size: 22px;
    margin-top: 15px;
    height: 60px;
  }

  .location-card p:nth-child(2) {
    font-size: 18px;
    height: 70px;
    color: #fff;
    font-family: "Poppins", sans-serif !important;
  }

  .location-card p:nth-child(3) {
    font-size: 23px;
  }

  .location-card p:nth-child(3) span {
    color: #fff600;
  }

  .location-card button {
    font-family: "Sobread";
    font-size: 23px;
    border: none;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 30px 10px 30px;
    color: #303030;
    margin-bottom: 10px;
    margin-top: 5px;
  }

  .location-card button:hover {
    background-color: #fff600;
    transition: 200ms ease-in;
    color: #303030;
  }

  .location-card-wrapper {
    /*background-color: #fff600;*/
    padding-top: 2%;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 40px;
    margin-top: -23%;
    z-index: 10;
    position: relative;
  }

  .intro-section2 .video-section {
    margin-top: 5%;
    padding-bottom: 5%;
  }

  .intro-section2 div[class="row d-flex justify-content-center"] {
    margin: 0px 100px;
  }

  @media screen and (max-width:1600px) {
    .location-card-body {
      /* height: 401px; */
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .location-card button {
      font-size: 18px;
    }

    .form-div button {
      font-size: 18px;
    }

  }

  .intro-section2 {
    background-image: url("../img/Grade-text-background.png");
    background-color: #fff600;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: -3.5%;
    position: relative;
  }

  .gif-section {
    margin: 5% 0;
    padding: 0;
    width: auto;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }
}


.footer-card-botton button {
  font-family: "Sobread";
  font-size: 23px;
  border: none;
  background-color: #fff600;
  border-radius: 8px;
  padding: 12px 30px;
  color: #303030;
  margin-bottom: 10px;
  margin-top: 35px;
}

.footer-card-botton button:hover {
  background-color: #fff;
  transition: 200ms ease-in;
  color: #303030;
}

.backgrade-grudge {
  background-image: url(../img/Section-2-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -50px;
  padding-bottom: 10px;
}

#multi-item-example.carousel {
  opacity: 1 !important;
  height: 100% !important;
}

#multi-item-example.carousel .carousel-indicators {
  bottom: -75px !important;
}

.slider-btns a.btn-floating-left img,
.slider-btns a.btn-floating-right img {
  width: 50px !important;
}

.slider-btns a.btn-floating-left,
.slider-btns a.btn-floating-right {
  position: absolute;
  right: -5vw;
  top: 50%;
  display: none;
}

.slider-btns a.btn-floating-left {
  position: absolute;
  left: -5vw;
  top: 50%;

}



button.carousel-control-prev img,
button.carousel-control-next img {
  width: 50px;
  position: relative;
}




@media screen and (max-width:1600px) {

  button.carousel-control-prev img,
  button.carousel-control-next img {
    width: 50px;
  }

  .gif-section {
    /* width: 550px !important; */
  }
}

.carousel-indicators button {
  height: 20px !important;
  background: none !important;
  border: 4px white solid !important;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

.accueil-sec-three {
  padding: 35px 0px 75px;
}

.accueil-sec-two .hidden-panel {
  height: 90px;
  z-index: 4;
  background-size: contain;
  width: 100%;
  background-repeat: repeat;
}

.accueil-sec-two .map-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 5555;
  width: 260px;
}


.footer-links .uber-section .popupData {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.footer-links .uber-section .popupData .popupDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-links .uber-section .popup-right img:hover {
  scale: 1.05;
  transition: 300ms ease;
}

.footer-links .uber-section .popup-right img {
  width: 75%;
}

.footer-links .uber-section .popupData h1 {
  text-align: center;
}

.footer-links .uber-section .popupData p {
  display: none;
}

.footer-links .uber-section .popupData a:first-child {
  justify-content: flex-end;
  display: flex;
}

.footer-links .uber-section .popupData a:nth-child(2) {
  justify-content: flex-start;
  display: flex;
}

.footer-links .uber-section .popupData a,
.footer-links .uber-section .popupData a:hover {
  background: transparent;
}

.footer-links .uber-section .popupData h1 {
  font-family: "Sobread";
  padding-top: 30px;
  color: var(--primaryColor);
}

.footer-links h3,
.footer-links h4 {
  font-family: "Sobread";
  color: var(--white);
  font-size: 2rem;
  padding: 10px;
  position: relative;
  top: 20px;
}

.intro-nav .row {
  justify-content: flex-end;
}

.form-area center {
  font-family: "Blablahawk";
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 20px;
}

.bannerSection {
  background: var(--primaryColor);
  margin-top: -2vw;
}

.bannerSection .imgContainer img:hover {
  transition: 500ms ease;
  scale: 1.03;
}

#resto3053 {
  width: 40%;
}

.bannerSwiper {
  background: url(../img/bannerSwiperBg.png) center center no-repeat;
  background-size: cover;
  padding: 3vw 0px;
}

.bannerSwiper .swiper-button-prev:after,
.bannerSwiper .swiper-button-next:after {
  content: "" !important;
}

.myBannerSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.myBannerSwiper .swiper-button-next img,
.myBannerSwiper .swiper-button-prev img {
  width: 6vw !important;
  max-width: unset !important;
}

.myBannerSwiper .swiper-button-prev {
  left: 13vw;
}

.myBannerSwiper .swiper-button-next {
  right: 13vw;
}

.myBannerSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.myBannerSwiper .swiper-wrapper .swiper-slide img {
  width: 58vw;
  height: fit-content;
}

.heroSection {
  background: url(../img/hero-bg.png) center center no-repeat;
  background-size: cover;
}

.myHeroSwiper {
  padding-bottom: 10vw !important;
}

.myHeroSwiper .swiper-slide img {
  position: relative;
  width: 100%;
  height: 700px;
  object-fit: cover;
  right: -2vw;
  top: 2.5vw;
}

.myHeroSwiper .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--blackColor);
  width: 19vw !important;
  position: relative !important;
  top: 4vw !important;
}

.myHeroSwiper .swiper-pagination-bullet {
  padding: 5px 10px;
  border-radius: 0;
  width: auto;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.myHeroSwiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

.myHeroSwiper .swiper-pagination-bullet {
  width: 20px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-size: 1.8vw;
  color: #B2B5BE;
  opacity: 1;
  background: transparent;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.myHeroSwiper .swiper-pagination-bullet {
  margin: 0px !important;
  background: #fff;
  color: #828282;
  padding: 1.5vw;
  font-family: "CompactaB";
}

.myHeroSwiper .swiper-pagination-bullet-active {
  /* background-color:#dd0000 !important; */
  color: var(--blackColor) !important;
}

.myHeroSwiperPagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

a[href="votre-compte.php"] {
  color: var(--primaryColor);
}

a[href="votre-compte.php?logout=logout"] h3 {
  color: var(--primaryColor) !important;
}

.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

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

#zoneRechargement .prodImagWithIngContainer .order-0 {
  display: none !important;
}

h5.modal-title {
  color: var(--primaryColor);
}

.modal-header .modal-title {
  color: var(--blackColor);
}

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

.formShadowContainer table td span {
  color: var(--whiteColor) !important;
}

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

ul[style="width:700px !Important;"] {
  padding-right: 100px !important;
}

.userFormContainer div.form-control.rounded-pill.customInput {
  height: 60px;
}

.select-items div,
.select-selected {
  margin-top: 3px;
  background: none;
}

.select-selected {
  margin-top: 17px;
  background: none;
  margin-left: 1rem;
}

.formShadowContainer table td font[color="#000"] {
  color: #fff;
}

.formShadowContainer a.click-app {
  color: var(--primaryColor);
}

#mainContentBox>div.linkPageContainer>div>div>div>p:nth-child(4) {
  color: #fff !important;
}

.cartDrawerContainer button.btn.validateBtn {
  width: 600px !important;
  margin: 8px 53px 7px 140px !important;
}

.prodImagWithIngContainer [data-aos^="zoom"][data-aos^="zoom"].aos-animate {
  transform: none !important;
}

.prodImagWithIngContainer [data-aos="zoom-in-up"] {
  transform: none !important;
}

.CustomColorPizza ul li {
  width: 60%;
}

.sideBarContainer::-webkit-scrollbar {
  display: none;
}

input[type="date"] {
  color-scheme: dark;
}

.extraList .cartItemIncDec img {
  order: 1;
  user-select: none;
}

.extraList .cartItemIncDec .tabTxt {
  order: 2;
  width: 65%;
  user-select: none;
}

.extraList .cartItemIncDec .minus {
  order: 3;
  margin-left: 20px;
}

.extraList .cartItemIncDec input {
  order: 4;
}

.extraList .cartItemIncDec .plus {
  order: 5;
}

.btnfContainer {
  background: url(../img/btn-f-bg.png) center center no-repeat;
  background-size: cover;
}

.btnfContainer h1 {
  color: var(--primaryColor);
  font-size: 6rem;
}

.btnsContainer p {
  color: var(--blackColor);
}

.btnfContainer h1,
.btnsContainer h1 {
  font-size: 7rem;
  margin: -2.5rem 0px 0px 0px;
}

.catProdTxt {
  padding-top: 1.6rem;
}

.btnsContainer,
.btnfContainer {
  display: flex;
  align-items: center;
}

.footer-social-icons img {
  width: 2.8rem;
}

.footer-social-icons a {
  margin: 0px 0.5rem;
}

.social-icons a {
  margin: 0px 0.2vw;
}

.sliderTxtSection {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.sliderTxtSection p {
  font-size: 2.3rem;
  line-height: 3.4rem;
  letter-spacing: 2px;
}

@media (max-width:1550px) {
  .sliderTxtSection p {
    font-size: 2.8rem;
  }

  .prodSlider .col-lg-5:nth-child(2) {
    margin-left: 6%;
  }
}

@media (max-width:1450px) {
  .sliderTxtSection p {
    font-size: 2.5rem;
  }
}

.card-top-img {
  width: 100%;
  border-radius: 0.6rem;
  height: 55%;
  display: flex;
  justify-content: center;
  background-color: var(--primaryColor);
  position: relative;
}

.card-top-img img {
  position: absolute;
  top: -4rem;
}

.iconglasses,
.iconfish,
.icontree {
  position: absolute;
}

.iconfish {
  top: -25rem;
  right: 54rem;
  width: 60%;
  /* background: lightblue; */
}

.iconfish img {
  width: 6rem;
  animation: moveFish 5s infinite alternate;
  offset-path: path("M723.58,327.67c0,0,51.74,29.49,113.21,2.87c0,0,54-25.85,114.13,1.72c0,0,52.28,23.74,109.53-4.98 c0,0,49.98-20.3,103.02,4.4c0,0,24.36,11.34,51.63,9.98"
    );
}

@keyframes moveFish {
  100% {
    offset-distance: 100%;
  }
}

.icontree {
  right: 1rem;
  top: 7rem;
  animation: mildRotate 3s ease-in-out 1s infinite;
}

.icontree img {
  width: 10rem;
}

.iconglasses {
  left: 4rem;
  top: absolute;
  top: 6rem;

  animation: rotateHoriz 3s ease-in-out infinite;
}

.iconglasses img {
  width: 9rem;
}

.bigSandwich {
  background: url(../img/bigSandwichBg.png) center center no-repeat #161616;
  background-size: cover;
  padding: 16vw 0px 12vw 0px;
  position: relative;
  z-index: 2;
}

.bigSandwich .txtSection h1 {
  font-family: "Sobread";
  font-size: 6vw;
  font-weight: normal;
  text-align: center;
  line-height: 5.1vw;
  position: relative;
}

.bigSandwich .txtSection h1 span {
  padding: 0.2rem 0.8rem;
}

.bigSandwich .txtSection h1 span:nth-child(1) {
  color: var(--primaryColor);
}

.bigSandwich .txtSection h1 span:nth-child(3) {
  color: var(--whiteColor) !important;
  font-family: "AmazingKids";
  font-size: 7vw;
  word-spacing: -10px;
  white-space: nowrap;
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: black;
}

.bigSandwich .txtSection h1 span:nth-child(5) {
  color: var(--blackColor);
}

.txtSection h3 {
  color: var(--primaryColor);
  font-family: "Sobread";
  font-size: 2vw;
  letter-spacing: 1px;
  line-height: 2.5vw;
  margin-top: -2vw;
}

.txtSection.blackArea h3 {
  color: var(--primaryColor) !important;
}

.txtSection a {
  color: var(--whiteColor) !important;
  font-family: "AmazingKids";
  font-size: 2vw;
  letter-spacing: 1px;
  padding-top: 0px;
  display: block;
}

.txtSection a {
  font-size: 4vw;
  -webkit-text-stroke-width: 1.2px;
  -webkit-text-stroke-color: black;
}

.txtSection a:hover {
  color: var(--whiteColor) !important
}


.imgSection .smallIcons div {
  position: absolute;
}

.mainSandiwch {
  position: absolute;
  bottom: -25rem;
  width: 60rem;
}

.mainSandiwch img {
  width: 100%;
}

.sunImg {
  left: -31rem;
  bottom: -19rem;
  animation: rotate 15s linear infinite;
}

.sunImg img {
  width: 9rem;
}

.cupImg {
  left: -17rem;
  bottom: -11rem;
  animation: mildRotate 3s ease-in-out 1s infinite;
}

.cupImg img {
  width: 11rem;
}

.treeImg {
  bottom: 3rem;
  left: 9rem;
  animation: mildRotate 3s ease-in-out 1s infinite;
}

.sunImg2 {
  right: 7rem;
  top: -1rem;
  animation: rotate 15s linear infinite;
}

.sunImg2 img {
  width: 12rem;
}

.maskImg {
  right: -10rem;
  bottom: 10rem;
  animation: stretch 2s ease-in-out 1s infinite;
}

.maskImg img {
  width: 10rem;
}

.shapeImg {
  right: -10rem;
  bottom: 1rem;
  animation: rotateHoriz 3s ease-in-out infinite;
}

.shapeImg img {
  width: 6rem;
}

.topHeroSection {
  background: url(../img/topHeroBg.png) center bottom no-repeat;
  background-size: cover;
  top: 8rem;
  z-index: 3;
  position: relative;
  padding: 4rem 0px 7rem 0px;
}

.topHeroSection .row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.topHeroSection h1 {
  text-align: center;
  font-family: "Sobread";
}

.megaHeading {
  position: relative;
}

.megaHeading h1 {
  color: var(--customPink);
  width: max-content;
  margin: 0px auto;
  font-size: 13rem;
  line-height: 10rem;
  border-bottom: 10px dashed var(--customPink);
}

.megaHeading h1.textShadow {
  color: transparent !important;
  -webkit-text-stroke: 2px white;
  border-bottom: unset !important;
  position: absolute;
  top: -3px;
  /* left: 24.5%; */
  font-size: 13.5rem;
  width: 100%;
}

.megaBurger {
  display: flex;
  justify-content: center;
  top: 1rem;
  position: relative;
}

.megaBurger img {
  transition: transform 0.2s ease-in-out;
}

.megaBurger:hover img {
  transform: scale(1.03);
}

.megaBurger img {
  width: 39rem;
}

.smallCup {
  top: 0rem;
  left: 20%;
  animation: 3s ease-in-out 1s infinite normal none running mildRotate;
}

.smallHead {
  top: -3rem;
  right: 20%;
  animation: mildRotate 3s ease-in-out infinite;
}

.miniHeading h1 {
  font-size: 4.5rem;
}

.bannerSection {
  padding: 0rem 0px 8rem 0px;
  z-index: 2;
  position: relative;
}

.bannerSection .textContainer {
  /*! transform: rotate(-5deg); */
  padding-top: 3vw;
}

.bannerSection .txtSection {
  /*! top: -7rem; */
  /*! right: 4rem; */
}

.fHeading h1 {
  color: var(--blackColor);
  font-family: "Sobread";
  text-align: center;
  font-size: 7.4vw;
  /*! right: -3.5rem; */
  position: relative;
  line-height: 5rem;
}

.fHeading h1 span {
  font-family: "AmazingKids";
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--blackColor);
  color: var(--whiteColor);
  font-size: 9.5vw;
  top: 1vw;
  position: relative;
}

.fHeading h3 {
  color: var(--whiteColor)
}



.fHeading a img:hover {
  transition: 500ms ease scale;
  scale: 1.1;
}

.sHeading h1 {
  font-family: "Sobread";
  text-align: center;
  color: var(--primaryColor);
  font-size: 10rem;
  line-height: 6rem;
  z-index: 1;
  position: relative;
}

.tHeading {
  top: 0.1rem;
  position: relative;
  z-index: 2;
}

.tHeading h1 {
  text-align: center;
  font-size: 7rem;

  font-family: "SouthGardens";
  color: var(--whiteColor);
}

.bannerSection .imgContainer {
  /*! width: 50rem; */
  /*! bottom: -6.5rem; */
  /*! position: relative; */
  /*! left: 18rem; */
}

.bannerSection .imgContainer:hover {
  /* transform: rotate(2deg); */
}

.ltree {
  position: absolute;
  top: 2rem;
  animation: mildRotate 3s ease-in-out 1s infinite;
}

@keyframes mildRotate {
  0% {
    transform: rotate(0deg);
  }

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

  100% {
    transform: rotate(0deg);
  }
}

.ltree img {}

.lheart {
  position: absolute;
  top: 0rem;
  left: 12rem;
}

.lheart img {
  animation: stretch 2s ease-in-out 1s infinite;
}

@keyframes stretch {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.lsun {
  position: absolute;
  right: 1rem;
}

.lsun img {
  animation: rotate 15s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* @keyframes moveLeftRight {
  0% {
    transform: translateX(0rem);
  }
  50% {
    transform: translateX(-12rem) rotateY(180deg);
  }
  100% {
    transform: translateX(12rem);
  }
} */
@keyframes rotateHoriz {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

.colorIcons,
.littleIcons,
.smallIcons {
  display: none
}

.fHeading {
  /* padding-top: 120px; */
}

.bikeSection h1 {
  color: var(--primaryColor);
  font-family: "Sobread";
  font-size: 7.5vw;
  line-height: 6vw;
  letter-spacing: 1px;
  text-align: center;
}

.bikeSection h1 span {
  color: var(--whiteColor);
  font-size: 5vw;
  position: relative;
  left: -6.5vw;
}

.bikeSection h2 {
  color: var(--whiteColor);
  font-family: Mind-Boggle;
  font-size: 5vw;
  line-height: 6vw;
  letter-spacing: 1px;
  text-align: center;
  left: -7.5vw;
  position: relative;
}

.bikeSection a {
  color: var(--blackColor);
  font-family: "Sobread";
  font-size: 40px;
  letter-spacing: 1px;
  text-align: center;
  display: block;
}

.bikeSection a:hover {
  color: var(--blackColor)
}


.bikeSection h2 span {
  font-family: "AmazingKids";
  text-align: left !important;
}

.bikeSection {
  background: #161616;
  padding: 0px 0px 4vw 0px;
  padding-right: 0px;
  padding-left: 0px;
  padding-top: 3vw;
  background-size: cover;
  z-index: 10;
  position: relative;
  margin: 0rem 0px -16vw 0px;
}

.bikeSection .txtContainer {
  padding-top: 4vw;
}

.button-bike img {
  width: 15%;
  padding-left: 30px;
}

.button-bike:hover img {
  position: relative;
  left: 30px;
}

.button-bike {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

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



  .fHeading h1 {
    /* font-size: 5rem !important; */
    /* line-height: 4rem !important; */
  }

  .fHeading {
    /* padding-top: 80px !important; */
  }


  .bikeSection a {
    font-size: 30px !important;
  }

  .application h1 {
    font-size: 35px !important;
  }
}


input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--primaryColor);
}

/* #Cartch h6.mt-2{
  width: 65px;
} */



@keyframes glower1 {

  0%,
  100% {
    text-shadow: 0 0 5px var(--black);
  }

  50% {
    text-shadow: 0 0 50px var(--black);
  }
}

@keyframes glower2 {

  0%,
  100% {
    text-shadow: 0 0 5px var(--primaryColor);
  }

  50% {
    text-shadow: 0 0 50px var(--primaryColor);
  }
}


#Cart a h3 {
  color: #cbbfa1;
}


.txtSection img {
  width: 40%;
  position: relative;
  top: -20px;
}

.button-section3 {
  padding-top: 2.5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-section3 img {
  padding-left: 20px;
  width: 7vw;
  position: relative;
  top: 0px;
}

.button-section3:hover img {
  left: 40px;
}


.menuAds.bikeSection .col-lg-4 img {
  width: 27vw;
  left: -5vw;
  position: relative;
}

.sliderContainerBottom #multi-item-example>div>div>div>div {
  position: relative !important;
  top: 10rem !important;
}

.sliderContainerBottom #multi-item-example {
  position: relative;
  top: -3rem;
}


.application-img img:hover {
  scale: 1.1;
  transition: 300ms ease all;
}

.application-img img {
  width: 14.5vw;
  margin-top: 2vw;
  margin-right: 1vw;
}

.application-img {
  display: flex;
  justify-content: center;
  left: -8.5vw;
  position: relative;

}

.application h1 {
  font-family: cocogoose;
  font-size: 45px;
  color: var(--blackColor);
}


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

.userFormContainer form a:hover {
  color: var(--primaryColor);
}

.menuItems img[src="img/phone.svg"] {
  width: 5.5%;
}

/* Intro page start */
.map-wrapper.grade {
  background-color: #000;
  padding: 0 0% 8% 0%;
  margin-top: -4%;
  position: relative;
  /* background-image: url("../img/intro-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover; */
  background: #000;
  background-position: center -81px;
}

.bg-black {
  background-color: #000;
}

.intro-nav {
  background-color: #000;
  padding: 1%;
  box-shadow: 0px 0px 20px 0px #fff600;
  position: relative;
  z-index: 111;
}

.nav-logo {
  width: 48%;
}

.hamburger-img {
  width: 12%;
}

.nav-locationPin-img {
  width: 85%;
  margin-bottom: -5px;
}

.white-ellipse-img {
  width: 60px;
  margin-left: -10px;
}

.nav-text {
  color: var(--primaryColor);
  font-size: 25px;
  padding-right: 5px;
  margin-bottom: 0;
}

.map-wrapper {
  background-color: #000;
  padding: 0 0% 8% 0%;
  /* margin-top: 2%; */
  position: relative;
  /* background-image: url("../img/intro-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover; */
  background: #000;
  height: 38vw;
  background-position: center -81px;
}


.map-wrapper {
  background-color: #000;
  padding: 0%;
  /* margin-top: 2%; */
  position: relative;
  /* background-image: url("../img/intro-hero-bg.png");
  background-repeat: no-repeat;
  background-size: cover; */
  background: #000;
  width: 100vw;
  height: 700px;
  background-position: center -81px;
}

.map-wrapper iframe {
  height: 700px;
  width: 100%;
  position: relative;
}

.map-wrapper .form-area {
  position: relative;
  width: 85%;
  top: -19vw;
  left: 8vw;
}

.map-wrapper .form-area .row {
  margin-right: 0 !important;
  margin-left: 0 !important;
}

.form-area h5 strong {
  position: relative;
  top: -3rem;
}


.map-overlay {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: 80vh;
  background-color: #000 !important;
  mix-blend-mode: multiply;
  opacity: 0.5;
  z-index: 0;
}


.map-overlay-text {
  font-family: "Sobread";
  font-size: 26px;
  padding-top: 12%;
  text-align: center;
}

.form-div {
  /* margin-top: 50px; */
}

.form-div button {
  font-family: "Sobread";
  font-size: 21px;
  padding: 7px 20px;
  border: none;
  background-color: #fff600;
}

.form-div form {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15px;
  margin-left: 8px;
  width: 100%;
  /* background-color: rgba(0, 0, 0, .5); */
}

.form-div form select {
  /* height: 30px; */
  background-color: white;
  border-radius: 4px;
  margin-bottom: 0;

  color: #000 !important;
  padding: 5px 5px 5px 10px;
  font-family: "Poppins";
  font-weight: 500;

}

.search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.form-div form select::placeholder {
  font-weight: 300;
}

.target-icon {
  width: 30px;
}

.map-overlay-img {
  width: 40px;
}

.intro-section2 {
  position: relative;
}

.location-card {
  /* border-radius: 40px;*/
  border-radius: 0px;
  padding: 10px 15px;
  text-align: center;
}

.location-card-body-inner {
  position: absolute;
  top: 15%;
  left: 20%;
  text-align: center;
}

.location-card p:nth-child(2) {
  color: #fff600;
  font-family: "Sobread";
  font-size: 22px;
  height: 60px;
}

.location-card p:nth-child(3) {
  font-size: 18px;
  height: 70px;
}

.location-card p:nth-child(4) {
  font-size: 23px;
}

.location-card p:nth-child(4) span {
  color: #fff600;
}


.location-card :hover {
  color: #fff600;
}

.location-card button {
  font-family: "Sobread";
  font-size: 23px;
  border: none;
  background-color: #fff600;
  border-radius: 8px;
  padding: 12px 30px 10px 30px;
  color: #303030;
  margin-bottom: 10px;
  margin-top: 5px;
}

.location-card button:hover {
  background-color: #fff;
  transition: 200ms ease-in;
  color: #303030;
}

.location-card-wrapper {
  padding-top: 2%;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 40px;
  z-index: 10;
  position: relative;
}

.intro-section2 .video-section {
  margin-top: 5%;
  padding-bottom: 5%;
}

.intro-section2 div[class="row d-flex justify-content-center"] {
  margin: 0px 100px;
}

@media screen and (max-width:1600px) {
  .location-card-body {
    /* height: 401px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .location-card button {
    font-size: 18px;
  }

  .form-div button {
    font-size: 18px;
  }

}

@media screen and (max-width:1050px) {
  .nav-text {
    font-size: 17px;
  }

  .nav-logo {
    width: 60%;
  }

  .nav-locationPin-img {
    width: 65%;
  }

  .white-ellipse-img {
    width: 50px;
  }
}

@media screen and (max-width:992px) {
  .location-card-wrapper {
    margin-top: 0;
  }

  .map-overlay-text {
    font-size: 18px;
  }
}

@media screen and (max-width:768px) {
  .hamburger-img {
    width: 45px;
  }
}


.delivIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.8rem;
}

.delivIcons a:hover {
  scale: 1.1;
  transition: 300ms ease all;
}

.colorIcons+h1 {
  display: none;
}


.main-nav-div {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0px;
  width: 100% !important;
}

.main-nav-div button {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--primaryColor);
  width: 200px;
  padding: 10px 10px;
  margin: 0px 20px;
  border-radius: 50px;
  border: 2px solid #fff;
  font-family: Poppins !important;
  color: var(--whiteColor);
  font-weight: bold;
}

.main-nav-div button.active,
.main-nav-div button:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
}

.main-nav-div button img {
  margin-right: 10px;
}

#custom-popup-1,
#custom-popup-2,
#custom-popup-3 {
  display: none;
  transform: translate(-50%, -50%);
  background-color: rgb(255, 250, 250);
  height: auto;
  padding: 30px 20px 10px;
  /* z-index: 9999; */
  color: var(--blackColor);
  width: 650px;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#custom-popup-1 {
  position: absolute;
  top: 20.5rem;
  left: 45vw;
}

#custom-popup-2 {
  position: absolute;
  top: 17.5rem;
  left: 58vw;
}

#custom-popup-3 {
  position: absolute;
  top: 17.5rem;
  left: 73vw;
}

#close-popup-1,
#close-popup-2,
#close-popup-3 {
  display: block;
  margin-top: 10px;
  position: absolute;
  top: 0px;
  right: 20px;
  font-size: 2rem;
  border: none !important;
  background: none;
}

#close-popup-3:hover,
#close-popup-1:hover,
#close-popup-2:hover {
  text-decoration: underline !important;
}

.popupDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
}

.popupDiv h1 {
  color: var(--primaryColor);
  font-size: 1.4rem;
}

.popupDiv p {
  color: var(--black);
  font-size: 1.2rem;
}

.popup-left {
  width: 80%;
  height: 100px;
}

.popup-right {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.popup-right img {
  width: 70%;
}

.popup-right a {
  background: #c4c1c1;
  color: var(--blackColor);
  /* padding: 10px 20px; */
  border-radius: 10px;
  transition: all 1s;
}

#custom-popup-2 .popup-right a,
#custom-popup-3 .popup-right a {
  background: none;
  border-radius: 10px;
  transition: all 1s;
}

#custom-popup-3 .popup-left,
#custom-popup-2 .popup-left {
  width: 107%;
}

.popup-right a:hover {
  background: #000;
  color: var(--whiteColor);
  /* padding: 10px 20px; */
  border-radius: 10px;
}

.footer-links {
  background-image: url(../img/sec-5-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0px;
  display: flex;
  justify-content: space-evenly;
  min-height: 400px;
  align-items: center;
  flex-direction: column;
}



.footer-links a.active,
.footer-links a:hover {
  color: var(--blackColor);
  text-decoration: underline !important;
}

.coming-soon-shop-section {
  /* display: flex; */
  /* justify-content: center; */
  /* width: 1920px; */
}

.gif-section {
  margin: 0% 0 7%;
  padding: 0;
  /* width: 740px; */
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
}


.gif-section img {
  position: relative;
  width: 100%;
}

.gif-section .location-card-wrapper {
  margin-top: 0px !important;
}

/* Intro page end */


/* franchise-page start */
#franchise-page {
  background-image: url("../img/text-background.png");
  overflow: hidden;
  background-color: #fff600;
}

.franchise-main.container-fluid,
.franchise-main .row {
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.franchise-main img {
  width: 100%;
}

.franchise-section {
  padding: 50px 0px;
  color: var(--blackColor);
}

.franchise-section h2 {
  font-size: 30px;
  font-weight: 300;
  text-align: justify;
  padding: 10px 0px;
}

.franchise-section h3 span,
.franchise-section h2 span {
  font-weight: 900;
}

.franchise-section h3 span a,
.franchise-section h2 span a {
  color: var(--blackColor);
}

.franchise-section h3 span a:hover,
.franchise-section h2 span a:hover {
  color: var(--blackColor);
  text-decoration: underline !important;
}

.franchise-section h3 {
  text-align: center;
  padding: 20px 0px;
}

.franchise-main .mainSecText {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15vw;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.franchise-main .mainSecText img {
  width: 30%;
}

.franchise-main .mainSecText h1 {
  text-align: center;
  color: var(--white);
  font-size: 5rem;
  font-family: "Sobread";
}

.franchise-main .mainSecText h1.animate-txt {
  color: var(--primaryColor) !important;
  font-size: 5rem;
  font-family: "Sobread";
  text-align: center;
}

.ml10 {
  position: relative;
  font-weight: 900;
  font-size: 4em;
}

.ml10 .text-wrapper {
  position: relative;
  display: inline-block;
  padding-top: 0.2em;
  padding-right: 0.05em;
  padding-bottom: 0.1em;
  overflow: hidden;
}

.ml10 .letter {
  display: inline-block;
  line-height: 1em;
  transform-origin: 0 0;
  letter-spacing: 5px;
}

/* franchise-page end */

/* recrutement-page start */

#recrutement-page {
  min-height: 100vh;
  background-image: url("../img/text-background.png");
  overflow: hidden;
  background-color: #fff600;
}

.recrutement-main.container-fluid,
.recrutement-main .row {
  padding-right: 0px !important;
  padding-left: 0px !important;
}


.recrutement-main .mainSecText {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 15vw;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.recrutement-main .mainSecText img {
  width: 30%;
}

.recrutement-main .mainSecText h1 {
  text-align: center;
  color: var(--white);
  font-size: 5rem;
  font-family: "Sobread";
}

.recrutement-main .mainSecText h1.animate-txt {
  color: var(--primaryColor) !important;
  font-size: 5rem;
  font-family: "Sobread";
  text-align: center;
}

.recrutement-section {
  padding: 50px 0px;
  color: var(--blackColor);
}

.recrutement-section h2 {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  font-family: "Sobread";
  padding: 10px 0px;
}

.recrutement-section h3 {
  font-size: 1.8rem;
  font-weight: 300;
  text-align: justify;
  padding: 10px 0px;
}

.recrutement-section h3 span {
  font-size: 2rem;
  font-weight: 900;
  font-family: "Sobread";
}

.recrutementForm .inputDiv {
  padding-top: 30px;
}

.recrutementForm .inputDiv label {
  font-size: 1.5rem;
  padding-bottom: 10px;
}

.recrutementForm .inputDiv input {
  border: 1px solid #303030;
  color: var(--blackColor) !important;
}

.recrutementForm .inputDiv input {
  background: rgba(255, 255, 255, 0.5) !important;
}

.recrutementForm .inputDiv input[type="file"] {
  height: 100px;
  border-radius: 10px !important;
}

.recrutementForm .inputDiv input::placeholder {
  color: #a1a1a1 !important;
}

.recrutementForm button.recrutementBtn {
  color: var(--blackColor);
  background: var(--whiteColor) !important;
  border: 1px solid #000 !important;
  padding: 10px 20px;
  margin-top: 40px;
  font-size: 1.7rem;

}

.recrutementForm button.recrutementBtn a {
  color: var(--blackColor);
  background: var(--whiteColor) !important;

}

.recrutementForm button.recrutementBtn:hover,
.recrutementForm button.recrutementBtn:hover {
  color: var(--whiteColor);
  background: var(--blackColor) !important;

}

.recrutementForm button.recrutementBtn:hover a {
  color: var(--whiteColor) !important;
  background: none !important;

}


/* accueil page start*/
#accueil {
  overflow: hidden;
}

#intro-page video {
  position: relative;
  width: 100%;
}

.Slider-Sec {
  padding: 115px 0px 50px;

}

.Slider-Sec h1 {
  color: var(--blackColor);
  text-align: center;
  font-size: 4vw;
  font-family: "Sobread";
}

.accueil-page {
  width: 100vw;
  background-image: url("../img/text-background.png");
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -3%;
  align-items: center;
  display: flex;
  align-content: center;
  flex-direction: column;
}

.accueil-page img {
  position: relative;
  width: 95%;
  margin-top: -30px;
}

.accueil-page .swiper-slide {
  position: relative;
  display: flex;
  margin: 40px;
  justify-content: center;
  align-items: center;
}


.accueil-page .swiper-slide:hover {
  scale: 1.03;
  border-radius: 15px;
  border: 3px solid #ffffff85;
  top: 10px;
  left: 10px;
  z-index: 99999;

  transition: 300ms;
  position: relative;
}



.accueil-page .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.accueil-page .swiperNav2 {
  position: relative;
  top: -17vw;
}

.accueil-page .swiper-button-next {
  right: -5rem !important;
}

.accueil-page .swiper-button-prev {
  left: -5rem !important;
}

.accueil-page .swiper-button-next img,
.accueil-page .swiper-button-prev img {
  filter: invert(100);
  border-radius: 0px;
}

.accueil-page .swiper-button-next,
.accueil-page .swiper-button-prev {
  position: absolute !important;
  color: none !important;
  font-family: none !important;
}

.accueil-page .swiper-button-next:after,
.accueil-page .swiper-button-next:before {
  content: "";
  display: block;
  width: 100.667vw;
  height: 1.667vw;
  font-family: none !important;
}

.accueil-page .swiper-button-prev:after,
.accueil-page .swiper-button-prev:before {
  content: "";
  display: block;
  width: 1.667vw;
  height: 1.667vw;

}

.owl-dot {
  width: 20px;
  height: 20px;
  background: var(--blackColor);
}

.accueil-sec-two {
  background-size: cover;
  width: 100%;
  position: relative;
}

.accueil-sec-two .row {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}

.accueil-sec-two .acc-secTwoTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}

.accueil-sec-two .acc-secTwoTxt h1 {
  font-size: 3vw;
  font-family: "Sobread";
  color: var(--primaryColor);
}

.accueil-sec-two .acc-secTwoTxt a {
  font-size: 2vw;
  font-family: "Sobread";
  background: var(--primaryColor);
  border-radius: 20px;
  padding: 10px 40px;
  letter-spacing: 4px;
  color: var(--blackColor);
  margin-top: 20px;
  transition: all 0.5s;
}

.accueil-sec-two .acc-secTwoTxt a:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
  animation: acc-btn 1.5s infinite;
}

@keyframes acc-btn {

  0%,
  100% {
    transform: scale(0.8);
  }

  50% {
    transform: scale(1);
  }
}

.accueil-sec-three p {
  margin-top: 0px;
}

.accueil-sec-three {
  padding: 35px 0px 75px;
}

.accueil-sec-three h1.top-txt {
  color: var(--whiteColor);
  text-align: center;
  font-size: 4vw;
  font-family: "Sobread";
  margin-bottom: 30px;
}

.accueil-sec-three h1.top-txt span {
  color: var(--whiteColor);
  text-align: center;
  font-size: 4vw;
  font-family: "Sobread";
}

.accueil-sec-three h1.top-txt span:nth-child(19),
.accueil-sec-three h1.top-txt span:nth-child(20),
.accueil-sec-three h1.top-txt span:nth-child(21),
.accueil-sec-three h1.top-txt span:nth-child(22),
.accueil-sec-three h1.top-txt span:nth-child(23) {
  color: var(--blackColor) !important;
}

.accueil-sec-three .acc-secThreeTxt a {
  font-size: 2vw;
  font-family: "Sobread";
  color: var(--blackColor);
  transition: all 1s;
}

.accueil-sec-three .acc-secThreeTxt a:hover {
  color: var(--whiteColor);
  text-decoration: underline !important;
}

.acc-sec-4 {
  padding: 50px 0px;
  background: url(../img/acc-sec-2-bg.png) center center no-repeat #000;
  background-size: cover;
  position: relative;
}

.acc-sec-4 .col-lg-4 {
  position: relative;
}

.acc-sec-4 .col-lg-4 img {
  border: 2px solid var(--primaryColor);
}

.acc-sec-4 .abs-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: absolute;
  z-index: 111;
  width: 94.7%;
  height: 88%;
  border-radius: 20px;
}

.acc-sec-4 .abs-txt img {
  width: 250px;
  border: none;
}

.acc-sec-4 .abs-txt h1 {
  font-size: 1.6vw;
  font-family: "Sobread";
  color: var(--primaryColor);
  text-align: center;
  padding: 20px 0px;
}

.acc-sec-4 .abs-txt p {
  font-size: 1.2vw;
  color: var(--whiteColor);
  text-align: center;
}


.acc-sec-4 a {
  font-size: 1.4vw;
  font-family: "Sobread";
  background: var(--primaryColor);
  border-radius: 10px;
  padding: 10px 20px;
  color: var(--blackColor);
  transition: all 0.5s;
  position: relative;
  /* top:20px; */
  margin: 40px 30px 0px;
  display: block;
  text-align: center;
}

.acc-sec-4 a:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
}


.sec-4-txt h1 {
  font-size: 4vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding: 0px 0px;
}

.sec-4-txt h2 {
  font-size: 2.5vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding: 10px 0px;
}

.sec-4-txt h3 {
  font-size: 3vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding-bottom: 30px;
}

.sec-4-txt span {
  color: var(--primaryColor);
}

.acc-sec-5 {
  padding: 100px 0px;
  background: url(../img/sec-5-bg.png) center center no-repeat #000;
  background-size: cover;
  position: relative;
}

.sec-5-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sec-5-txt h1 {
  font-size: 4vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding: 0px 0px;
}

.sec-5-txt h2 {
  font-size: 2.5vw;
  font-family: "Sobread";
  color: var(--whiteColor);
  text-align: center;
  padding: 10px 0px;
}

.sec-5-txt a {
  font-size: 2vw;
  font-family: "Sobread";
  background: var(--primaryColor);
  border-radius: 20px;
  padding: 10px 40px;
  letter-spacing: 4px;
  color: var(--blackColor);
  margin-top: 20px;
  transition: all 0.5s;
}

.sec-5-txt a:hover {
  background: var(--blackColor);
  color: var(--whiteColor);
  animation: acc-btn 1.5s infinite;
}

.accueil-page .Slider-Sec .swiperNav2,
.accueil-page .mySwiper2 .swiper-wrapper .swiper-slide:nth-child(4),
.accueil-page .mySwiper2 .swiper-wrapper .swiper-slide:nth-child(5),
.accueil-page .mySwiper2 .swiper-wrapper .swiper-slide:nth-child(6) {
  display: none !important;
}

.ml2 {
  font-weight: 900;
  font-size: 3.5em;
}

.ml2 .letter {
  display: inline-block;
  line-height: 1em;
}

video {
  position: relative;
  width: 100%;
}



.accueil-sec-three .acc-secThreeTxt:hover {
  scale: 1.03;
  transition: 300ms;
}

.accueil-sec-three .acc-secThreeTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Sobread";
  color: var(--blackColor);
  font-size: 1.4rem;
}



/* accuial end */

/* recrutement start */


.recrutement-main.container-fluid,
.recrutement-section h2,
.recrutement-section h3 {
  display: none;
}

.recrutementForm[name="form1"] .container-fluid {
  justify-content: center;
  display: flex;
}

/* recrutement end */

#map-canvas>div.i4ewOd-pzNkMb-haAclf {
  background-color: rgb(46, 49, 47);
  display: none !important;
}


.hero-video {
  height: 100%;
}

.nav-logo img {
  width: 200px;
}


.shop-section {
  background-image: url(../img/Section-2-bg.jpg);
  padding: 5% 10%;
  background-repeat: no-repeat;
  margin-top: 4%;
  background-size: cover;

}

.location-card img:hover {
  transform: scale(1.01);
  transition: 0.5s;
}

.coming-soon-shop-section a img {
  width: 80% !important;
}

.coming-soon-shop-section a .coming-soon-img {
  width: 30vw !important;
}

.section-2-text {
  font-family: Sobread;
  text-align: center;

  h2 {
    font-size: 3.5rem;
    margin: 10px 0;
  }

  h4 {
    font-size: 2.5rem;
    margin: 10px 0;
  }

  h5 {
    margin: 10px 0;
    font-size: 2rem;
  }

  .container.Slider-Sec {
    width: 100% !important;
  }

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

  .image-section-text span {
    position: relative;
    background-image: url(../img/Vector\ 2.png);
    background-size: cover;
    background-repeat: no-repeat;
    padding: 17px;
    z-index: 999999;
  }
}

.cover-map-wrapper {
  background-image: url(../img/Map-background.png);
  height: 30px;
  position: relative;
  z-index: 999;
}

.carousel-item-next,
.carousel-item-prev,
.carousel-item.active {
  display: flex;
}


#grade {

  .location-card {
    /* border-radius: 40px;*/
    border-radius: 0px;
    background-color: #303030;
    padding: 10px 15px;
    text-align: center;
  }

  .location-card p:nth-child(1) {
    color: #fff600;
    font-family: "Sobread";
    font-size: 22px;
    margin-top: 15px;
    height: 60px;
  }

  .location-card p:nth-child(2) {
    font-size: 18px;
    height: 70px;
    color: #fff;
    font-family: "Poppins", sans-serif !important;
  }

  .location-card p:nth-child(3) {
    font-size: 23px;
  }

  .location-card p:nth-child(3) span {
    color: #fff600;
  }

  .location-card button {
    font-family: "Sobread";
    font-size: 23px;
    border: none;
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 30px 10px 30px;
    color: #303030;
    margin-bottom: 10px;
    margin-top: 5px;
  }

  .location-card button:hover {
    background-color: #fff600;
    transition: 200ms ease-in;
    color: #303030;
  }

  .location-card-wrapper {
    /*background-color: #fff600;*/
    padding-top: 2%;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 40px;
    margin-top: -23%;
    z-index: 10;
    position: relative;
  }

  .intro-section2 .video-section {
    margin-top: 5%;
    padding-bottom: 5%;
  }

  .intro-section2 div[class="row d-flex justify-content-center"] {
    margin: 0px 100px;
  }

  @media screen and (max-width:1600px) {
    .location-card-body {
      /* height: 401px; */
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .location-card button {
      font-size: 18px;
    }

    .form-div button {
      font-size: 18px;
    }

  }

  .intro-section2 {
    background-image: url("../img/Grade-text-background.png");
    background-color: #fff600;
    padding-left: 5%;
    padding-right: 5%;
    margin-top: -3.5%;
    position: relative;
  }

  .gif-section {
    margin: 5% 0;
    padding: 0;
    width: auto;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
  }
}


.footer-card-botton button {
  font-family: "Sobread";
  font-size: 23px;
  border: none;
  background-color: #fff600;
  border-radius: 8px;
  padding: 12px 30px;
  color: #303030;
  margin-bottom: 10px;
  margin-top: 35px;
}

.footer-card-botton button:hover {
  background-color: #fff;
  transition: 200ms ease-in;
  color: #303030;
}

.backgrade-grudge {
  background-image: url(../img/Section-2-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -50px;
  padding-bottom: 10px;
}

#multi-item-example.carousel {
  opacity: 1 !important;
  height: 100% !important;
}

#multi-item-example.carousel .carousel-indicators {
  bottom: -75px !important;
}

.slider-btns a.btn-floating-left img,
.slider-btns a.btn-floating-right img {
  width: 50px !important;
}

.slider-btns a.btn-floating-left,
.slider-btns a.btn-floating-right {
  position: absolute;
  right: -5vw;
  top: 50%;
  display: none;
}

.slider-btns a.btn-floating-left {
  position: absolute;
  left: -5vw;
  top: 50%;

}



button.carousel-control-prev img,
button.carousel-control-next img {
  width: 50px;
  position: relative;
}




@media screen and (max-width:1600px) {

  button.carousel-control-prev img,
  button.carousel-control-next img {
    width: 50px;
  }

  .gif-section {
    /* width: 550px !important; */
  }
}

.carousel-indicators button {
  height: 20px !important;
  background: none !important;
  border: 4px white solid !important;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-right-radius: 30px;
  border-top-left-radius: 30px;
}

.accueil-sec-three {
  padding: 35px 0px 75px;
}

.accueil-sec-two .hidden-panel {
  height: 90px;
  z-index: 4;
  background-size: contain;
  width: 100%;
  background-repeat: repeat;
}

.accueil-sec-two .map-icon {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 5555;
  width: 260px;
}


.footer-links .uber-section .popupData {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}

.footer-links .uber-section .popupData .popupDiv {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-links .uber-section .popup-right img:hover {
  scale: 1.05;
  transition: 300ms ease;
}

.footer-links .uber-section .popup-right img {
  width: 75%;
}

.footer-links .uber-section .popupData h1 {
  text-align: center;
}

.footer-links .uber-section .popupData p {
  display: none;
}

.footer-links .uber-section .popupData a:first-child {
  justify-content: flex-end;
  display: flex;
}

.footer-links .uber-section .popupData a:nth-child(2) {
  justify-content: flex-start;
  display: flex;
}

.footer-links .uber-section .popupData a,
.footer-links .uber-section .popupData a:hover {
  background: transparent;
}

.footer-links .uber-section .popupData h1 {
  font-family: "Sobread";
  padding-top: 30px;
  color: var(--primaryColor);
}

.footer-links h3,
.footer-links h4 {
  font-family: "Sobread";
  color: var(--white);
  font-size: 2rem;
  padding: 10px;
  position: relative;
  top: 20px;
}

.intro-nav .row {
  justify-content: flex-end;
}

.form-area center {
  font-family: "Blablahawk";
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-top: 20px;
}

.bannerSection {
  background: var(--primaryColor);
  margin-top: -2vw;
}

.bannerSection .imgContainer img:hover {
  transition: 500ms ease;
  scale: 1.03;
}

#resto3053 {
  width: 40%;
}

.bannerSwiper {
  background: url(../img/bannerSwiperBg.png) center center no-repeat;
  background-size: cover;
  padding: 3vw 0px;
}

.bannerSwiper .swiper-button-prev:after,
.bannerSwiper .swiper-button-next:after {
  content: "" !important;
}

.myBannerSwiper .swiper-slide {
  display: flex;
  justify-content: center;
}

.myBannerSwiper .swiper-button-next img,
.myBannerSwiper .swiper-button-prev img {
  width: 6vw !important;
  max-width: unset !important;
}

.myBannerSwiper .swiper-button-prev {
  left: 13vw;
}

.myBannerSwiper .swiper-button-next {
  right: 13vw;
}

.myBannerSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.myBannerSwiper .swiper-wrapper .swiper-slide img {
  width: 58vw;
  height: fit-content;
}

.heroSection {
  background: url(../img/hero-bg.png) center center no-repeat;
  background-size: cover;
}

.myHeroSwiper {
  padding-bottom: 10vw !important;
}

.myHeroSwiper .swiper-wrapper {
  height: 39.1vw;
}

.myHeroSwiper .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid var(--blackColor);
  width: 19vw !important;
  position: relative !important;
  top: 4vw !important;
}

.myHeroSwiper .swiper-pagination-bullet {
  padding: 5px 10px;
  border-radius: 0;
  width: auto;
  height: 30px;
  text-align: center;
  line-height: 30px;
  font-size: 12px;
  color: #000;
  opacity: 1;
  background: rgba(0, 0, 0, 0.2);
}

.myHeroSwiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #007aff;
}

.myHeroSwiper .swiper-pagination-bullet {
  width: 20px;
  height: 24px;
  text-align: center;
  line-height: 24px;
  font-size: 1.8vw;
  color: #B2B5BE;
  opacity: 1;
  background: transparent;
  display: flex;
  cursor: pointer;
  justify-content: center;
  align-items: center;
}

.myHeroSwiper .swiper-pagination-bullet {
  margin: 0px !important;
  background: #fff;
  color: #828282;
  padding: 1.5vw;
  font-family: "CompactaB";
}

.myHeroSwiper .swiper-pagination-bullet-active {
  color: var(--blackColor) !important;
}

.myHeroSwiperPagination {
  width: 100%;
  display: flex;
  justify-content: center;
}

a[href="votre-compte.php"] {
  color: var(--primaryColor);
}

a:hover[href="votre-compte.php"] {
  color: var(--whiteColor);
}


a[href="votre-compte.php?logout=logout"] h3 {
  color: var(--primaryColor) !important;
}
.poductSizesSimple ul li a{
  font-size: 1.1rem;
}
.poductExtra ul li a{
  font-size: 0.7vw;
}
.poductExtra ul{
  padding-left: unset !important;
  justify-content: center;
}