@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");
@font-face {
  font-family: beachday;
  src: url(../fonts/beachday.woff2);
}

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

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

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

@font-face {
  font-family: BebasNeue-Regular;
  src: url(../fonts/BebasNeue-Regular.ttf);
}
@font-face {
  font-family: ArcensDisplay;
  font-style: normal;
  font-weight: normal;
  src: local("Arcens_Display"), url("Arcens_Display.woff") format("woff");
}
@font-face {
  font-family: Author-Think;
  src: url(../fonts/Author-Think.ttf);
}
@font-face {
  font-family: Ananda;
  src: url(../fonts/Ananda-Black-Personal.ttf);
}
@font-face {
  font-family: BernardMT;
  src: url(../fonts/BernardMTCondensedRegular.ttf);
}
@font-face {
  font-family: PrizmaFine;
  src: url(../fonts/PrizmaFine.otf);
}
:root {
  --white: #ffffff;
  --black: #121618;
  --primaryColor: #fe0400;
  --secondryColor: rgb(179, 179, 179);
  --fadePink: rgba(250, 0, 67, 0.25);
  --fadeBlack: rgba(0, 0, 0, 0.8);
  --fadeGreen: rgba(206, 255, 223, 0.4);
  --darkGray: #696868;
  --darkBlue: #333;
  --lightGray: #ebeaea;
  --mediumGray: #eeeeee;
  --lightPink: #ffeef2;
  --orange: #ff9900;
  --royaleBlue: #e81401;
  --fbColor: #e81401;
  --instaColor: #e8564a;
  --youtubeColor: #ff0000;
  --twitterColor: #1da1f2;
  --skinColor: #f8e6cc;
  --offerGray: #414141;
  --skyBlue: #aee0fa;
  --purple: #ae76e6;
  --seaGreen: #c4f7e0;
  --Green: #179600;
  --lightGreen: #fe0400;
  --navydarkblue: #27305a;
  --darkbrown: #d2d2d2;
}

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

/* width */

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

/* Track */

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

/* Handle */

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

/* Handle on hover */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bs-gray-900);
  overflow: hidden;
  color: var(--white);
}

body.loaded {
  overflow: auto;
}

ul {
  list-style: none !important;
}

a {
  text-decoration: none !important;
}

p {
  font-size: 1rem;
}

input.form-control::placeholder {
  color: var(--white);
}

.form-control:hover,
.form-control:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: none !important;
}

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

section {
  display: block;
}

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

/* loader and side bar css code by professor start   */

.loader {
  height: 100vh;
  text-align: center;
  background: var(--bs-gray-900);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 555;
}

/* loading animation rods animation start  */

.rodsContainer {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  transform: translate(-50%, -50%);
}

.rodsInnerContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 1.2s;
}

.rodsContainer .loading {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: -20px 0 0 0;
  display: block;
  width: max-content;
  color: var(--primaryColor);
  position: relative;
  top: 50px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-animation: text 0.5s ease infinite alternate;
  -moz-animation: text 0.5s ease infinite alternate;
  animation: text 0.5s ease infinite alternate;
}

.rodsContainer .leftRod {
  width: 20px;
  height: 40px;
  position: relative;
  left: 0;
  background: var(--primaryColor);
}

.rightRod {
  position: relative;
  width: 20px;
  height: 40px;
  background: var(--primaryColor);
  left: 0;
}

.firstRodAnim {
  -webkit-animation: firstRodStep 0.5s linear both;
  -moz-animation: firstRodStep 0.5s linear both;
  animation: firstRodStep 0.5s linear both;
}

@keyframes firstRodStep {
  0% {
    -webkit-height: 0;
    -moz-height: 20px;
    height: 20px;
  }
  100% {
    -webkit-height: 100px;
    -moz-height: 100px;
    height: 100px;
  }
}

.secondLeftRod {
  animation: secondLeftStep 1s linear both;
}

.secondRightRod {
  animation: secondRightStep 1s linear both;
}

@keyframes secondLeftStep {
  0% {
    height: 100px;
    left: 0px;
  }
  100% {
    height: 100px;
    left: -30px;
  }
}

@keyframes secondRightStep {
  0% {
    height: 100px;
    left: 0px;
  }
  100% {
    height: 100px;
    left: 30px;
  }
}

.leftRod.firstRodAnim.secondLeftRod:before,
.rightRod.firstRodAnim.secondRightRod::before {
  content: "";
  background: var(--primaryColor);
  width: 50px;
  height: 20px;
  position: absolute;
  animation: sideBar 1s linear both;
}

.leftRod.firstRodAnim.secondLeftRod::before {
  top: 0;
  right: 0px;
}

.rightRod.firstRodAnim.secondRightRod::before {
  bottom: 0;
  left: 0px;
}

@keyframes sideBar {
  0% {
    width: 0;
  }
  100% {
    width: 50px;
  }
}

.rightRod.firstRodAnim.secondRightRod.lastStepRight {
  animation: lastRodStepRight 1s linear both;
}

.leftRod.firstRodAnim.secondLeftRod.lastStepLeft {
  animation: lastRodStepLeft 1s linear both;
}

@keyframes lastRodStepRight {
  0% {
    height: 100px;
    left: 30px;
  }
  100% {
    height: 200px;
    left: 30px;
  }
}

@keyframes lastRodStepLeft {
  0% {
    height: 100px;
    left: -30px;
  }
  100% {
    height: 200px;
    left: -30px;
  }
}

.tilt {
  transform: rotate(-2deg);
}

/* loading animation rods animation end  */

/* cube shape loading animation css start  */

.cube-folding {
  width: 50px;
  height: 50px;
  display: inline-block;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg) scale(1.2);
  font-size: 0;
}

.cube-folding span {
  position: relative;
  width: 25px;
  height: 25px;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
  display: inline-block;
}

.cube-folding span::before {
  content: "";
  background-color: var(--primaryColor);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 25px;
  height: 25px;
  -moz-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  -webkit-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-animation: folding 2.5s infinite linear both;
  -moz-animation: folding 2.5s infinite linear both;
  animation: folding 2.5s infinite linear both;
}

.cube-folding .leaf2 {
  -webkit-transform: rotateZ(90deg) scale(1.1);
  -moz-transform: rotateZ(90deg) scale(1.1);
  transform: rotateZ(90deg) scale(1.1);
}

.cube-folding .leaf2::before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
  background-color: var(--primaryColor);
}

.cube-folding .leaf3 {
  -webkit-transform: rotateZ(270deg) scale(1.1);
  -moz-transform: rotateZ(270deg) scale(1.1);
  transform: rotateZ(270deg) scale(1.1);
}

.cube-folding .leaf3::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  background-color: var(--primaryColor);
}

.cube-folding .leaf4 {
  -webkit-transform: rotateZ(180deg) scale(1.1);
  -moz-transform: rotateZ(180deg) scale(1.1);
  transform: rotateZ(180deg) scale(1.1);
}

.cube-folding .leaf4::before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  background-color: var(--primaryColor);
}

@-webkit-keyframes folding {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}

@-moz-keyframes folding {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}

@-ms-keyframes folding {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}

@keyframes folding {
  0%,
  10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    -moz-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
  25%,
  75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    -moz-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    -webkit-opacity: 1;
    -moz-opacity: 1;
    opacity: 1;
  }
  90%,
  100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    -moz-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    -webkit-opacity: 0;
    -moz-opacity: 0;
    opacity: 0;
  }
}

.cube-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: auto;
  text-align: center;
  transform: translate(-50%, -50%);
  margin: 0 !important;
}

.cube-wrapper:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -60px;
  margin: auto;
  width: 90px;
  height: 6px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-filter: blur(2px);
  filter: blur(2px);
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  border-radius: 100%;
  -webkit-animation: shadow 0.5s ease infinite alternate;
  -moz-animation: shadow 0.5s ease infinite alternate;
  animation: shadow 0.5s ease infinite alternate;
}

.cube-wrapper .loading {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0px auto;
  display: block;
  width: max-content;
  color: var(--primaryColor);
  position: relative;
  top: 50px;
  text-transform: uppercase;
  z-index: 2;
  -webkit-animation: text 0.5s ease infinite alternate;
  -moz-animation: text 0.5s ease infinite alternate;
  animation: text 0.5s ease infinite alternate;
}

@-webkit-keyframes text {
  100% {
    top: 35px;
  }
}

@-moz-keyframes text {
  100% {
    top: 35px;
  }
}

@-ms-keyframes text {
  100% {
    top: 35px;
  }
}

@keyframes text {
  100% {
    top: 35px;
  }
}

@-webkit-keyframes shadow {
  100% {
    bottom: -55px;
    width: 100px;
  }
}

@-moz-keyframes shadow {
  100% {
    bottom: -55px;
    width: 100px;
  }
}

@-ms-keyframes shadow {
  100% {
    bottom: -55px;
    width: 100px;
  }
}

@keyframes shadow {
  100% {
    bottom: -55px;
    width: 100px;
  }
}

/* cube shape loading animation css end  */

.loaderLogoContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 1rem;
  text-align: center;
}

.loaderLogoContainer img {
  width: 200px;
}

.sideBarContainer {
  background: var(--bs-gray-900);
  width: 80%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  position: fixed;
  left: 0;
  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: 150px;
  /* border: 1px solid #121618; */
  padding: 7px;
}

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

a.closeSideBarBtn img {
  width: 95%;
}

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

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

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(--white);
  font-size: 1.2rem;
  font-weight: 600;
}

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

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

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

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

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

/* loader and side bar css code by professor  end  */

/* main content  css code by professor  start  */

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

/* header css code start   */

header.header {
  display: block;
  padding: 0.5rem 0.5rem;
  box-shadow: 1px 5px 10px 0px rgb(0 0 0 / 15%);
  position: fixed;
  width: 100%;
  background: #333;
  top: 0;
  left: 0;
  z-index: 1111;
}

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

.headerContent .mainLogoContainer {
  display: flex;
  flex: 1;
  width: 100%;
}

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

button.btn.NotificationBtn {
  position: relative;
}

button.btn.NotificationBtn span#newNotifcationDot {
  width: 5px;
  height: 5px;
  background: var(--primaryColor);
  border-radius: 5px;
  position: absolute;
  top: 1px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

button.btn.HumBurgerBtn {
  padding-right: 0;
}

button.btn.NotificationBtn img,
button.btn.HumBurgerBtn img,
a.headerLogo img {
  max-width: 100%;
  width: 100%;
}

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

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

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

/* header css code end   */

.pageContent {
  padding: 1rem 1rem 3rem 1rem;
  margin-top: 80px;
  color: var(--white);
}

/* Normal Page content css for index page start   */

.helloMsg {
  position: relative;
  margin: 0.5rem 0;
  text-align: center;
}

.sideBarContainer .helloMsg {
  text-align: left !important;
  margin: 5px 0 -16px 20px !important;
}

.helloMsg p {
  margin: 30px 0 20px 0;
  color: var(--primaryColor);
  font-size: 1.2rem;
  font-weight: 600;
}

.notificationMsgContainer {
  position: relative;
}

.notificationeMsg {
  margin: 0.5rem 1rem;
  padding: 16px;
  background: var(--bs-gray-400);
  border-radius: 10px;
  transition: all linear 0.3s;
}

.notificationeMsg:hover,
.notificationeMsg:focus {
  padding-left: 26px;
  transform: scale(1.1) translate(-20px) !important;
  box-shadow: -1px 7px 9px 1px rgb(0 0 0 / 10%);
}

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

.notificationeMsg span.fw-bold {
  color: var(--primaryColor);
}

button.btn.hideNotifcation {
  position: absolute;
  top: -5px;
  right: 7px;
  z-index: 5;
}

button.btn.hideNotifcation span svg {
  height: 23px;
}

button.btn.hideNotifcation span svg path {
  fill: var(--darkGray);
}

/* /* offer slider css start */

.offerBox {
  position: relative;
  margin: 1rem 0;
  left: 1.8rem;
}

.skinBg {
  background: var(--skinColor);
}

.offerSubContainer {
  overflow: hidden;
}

.offerBox2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  /* border: 1px solid #fff; */
  border-radius: 20px;
  margin: 46px 0px;
  position: relative;
  left: 30px;
}
.offerBox2 img {
  width: 100% !important;
  border-radius: 10px;
  border: 2px solid #fff;
}

.offerBox2 h1 {
  padding: 10px 10px;
  color: var(--white);
  background: var(--primaryColor);
  border-radius: 50px;
  position: absolute;
  font-size: 1.4rem;
  top: 5vw;
  left: 5vw;
  border: 1px solid var(--primaryColor);
  transition: all 0.5s;
  font-family: Ananda;
  display: none;
}
.offerBox2 p {
  text-align: center;
  color: var(--black);
  font-size: 1.2rem;
  padding: 0px 20px;
  font-weight: 500;
}
.offerHeading {
  font-family: beachday;
  color: var(--offerGray);
  font-size: 2rem;
  position: relative;
  margin: 1rem 0;
  display: flex;
  z-index: 1;
  text-align: center;
  justify-content: center;
}

.offerHeading span.meltContainer {
  transform: rotate(15deg);
  position: relative;
  top: 13px;
}

.offerHeading span.meltContainer span.meltedTxt {
  display: flex;
  margin-left: 2px;
  animation: 4s infinite sta ease-in both;
}

@keyframes sta {
  0% {
    transform: scaleY(1) translateY(0);
    opacity: 0;
  }
  10%,
  20% {
    transform: scaleY(1) translateY(0);
    opacity: 1;
  }
  100% {
    transform: scaleY(8) translateY(0.5em);
    opacity: 0;
  }
}

.offerRoundInfo {
  background: var(--offerGray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 90px;
  height: 90px;
  border-radius: 100%;
  position: absolute;
  right: -7px;
  top: -39px;
  z-index: 3;
}

.offerRoundInfo h3,
.offerRoundInfo h4 {
  text-align: center;
  color: var(--white);
}

.offerRoundInfo h4 {
  font-weight: 500;
  font-size: 13px;
}

.offerRoundInfo h3 {
  font-weight: 600;
  font-size: 15px;
}

.offerRoundInfo h3.offerPriceInfoSmall {
  font-size: 25px;
  margin: 0;
}

h6.offerFt {
  color: var(--offerGray);
  margin: 0.5rem auto 0 auto;
  text-align: center;
  font-weight: 600;
  font-size: 20px;
}

.skyBg {
  background: var(--skyBlue);
}

.seaGreenBg {
  background: var(--seaGreen);
}

.rightOfferImg img {
  width: 76% !important;
  float: right;
  position: relative;
  left: 16px;
}

.sideTopOfferTxt {
  transform: rotate(-7deg);
  position: absolute;
  top: 18px;
  left: 11px;
}

.sideTopOfferTxt {
  transform: rotate(-7deg);
  position: absolute;
  top: 18px;
  left: 15px;
}

.sideTopOfferTxt h2 {
  font-family: beachday;
  color: var(--purple);
  font-size: 30px;
  margin: 0;
}

.sideTopOfferTxt h3 {
  color: var(--black);
  font-family: beachday;
  font-size: 23px;
}

.chefHandContainer img {
  width: 130px !important;
  position: absolute;
  left: 0;
  bottom: 0;
}

.chefHandContainer h3 {
  color: var(--black);
  font-family: beachday;
  font-size: 23px;
  text-align: center;
  position: absolute;
  bottom: 89px;
  left: 4%;
}

.chefHandContainer h3 span {
  color: var(--white);
  font-size: 30px;
}

/* /* offer slider css end */

section.servicesArea {
  padding: 1rem 0;
}

section.servicesArea h2.socialHeading {
  /*! font-family: FuturaBold; */
  font-size: 1.5rem;
  margin: 0;
}

p.subTxt {
  margin: 0;
  color: var(--primaryColor);
  text-align: center;
  font-family: bradhitc;
  font-weight: 600;
  font-size: 20px;
}

section.servicesArea .row {
  margin: 0 !important;
}

.serviceBox {
  overflow: hidden;
  padding: 0.2rem;
}

.imgWithCirlce {
  width: 100%;
  text-align: center;
  position: relative;
}

.imgWithCirlce img {
  width: 100%;
  margin: 0px auto;
  position: relative;
  z-index: 5;
}

.imgWithCirlce .behindCircle {
  position: absolute;
  top: 56%;
  left: 59%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}

.imgWithCirlce .behindCircle img {
  transition: all linear 0.3s;
  width: 68%;
  transform: scale(0.8);
}

.imgWithCirlce:hover .behindCircle img {
  transform: scale(0.9);
}

.serviceBox p {
  margin: 1.5rem 0 0.5rem 0;
  color: var(--darkBlue);
  text-align: center;
  font-weight: 600;
}

section.ourMenuBtns {
  position: relative;
  margin: 0 0 25px 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

section.ourMenuBtns ul {
  padding: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  width: 100%;
  margin-bottom: 0;
  /* min-height: 83px; */
  overflow-x: scroll;
}

section.ourMenuBtns ul li {
  /*! text-align: center; */
  margin-left: 11px;
  width: 100%;
}

section.ourMenuBtns ul li a {
  color: var(--darkBlue);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.5rem 2rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.129);
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: max-content;
}

section.ourMenuBtns ul li.activeMenuBtn a {
  color: var(--white);
  background: var(--primaryColor);
}

/* width */

section.ourMenuBtns ul::-webkit-scrollbar {
  width: 1px;
  display: none;
}

/* Track */

section.ourMenuBtns ul::-webkit-scrollbar-track {
  background: var(--white);
  display: none;
}

/* Handle */

section.ourMenuBtns ul::-webkit-scrollbar-thumb {
  background: var(--white);
  display: none;
}

/* Handle on hover */

section.ourMenuBtns ul::-webkit-scrollbar-thumb:hover {
  background: var(--white);
  display: none;
}

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

.imgBox {
  position: relative;
}

.imagesSliderArea .imgBox img {
  width: 100%;
}

img.zoom2Item,
img.zoom1Item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0);
}

img.zoom2Item {
  transition: all linear 0.6s;
}

img.zoom1Item {
  transition: all linear 0.3s;
}

.owl-item.active img.zoom2Item,
.owl-item.active img.zoom1Item {
  transform: scale(1);
}

section.imagesSliderArea .owl-dots {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
}

section.imagesSliderArea .owl-dots span {
  background: var(--black) !important;
  opacity: 0.6;
  transition: all linear 0.3s;
  transform: scale(0.8);
  margin: 0 0.2rem !important;
}

section.imagesSliderArea .owl-dots button.owl-dot.active span {
  opacity: 1;
  transform: scale(1);
}

.socialIcons {
  padding: 0;
  margin: 0 0 1rem 0;
}

h2.socialHeading {
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  margin: 0px 0 0 0 !important;
}

.socialIconContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5rem;
  margin-top: 1.5rem;
}

.socialIconContainer a {
  margin: 0 0.5rem;
  position: relative;
}

span.svgIcon svg {
  height: 1.7rem;
}

span.socialNotificationIcon {
  color: var(--white);
  background: var(--secondryColor);
  font-size: 16px;
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 100%;
  top: -11px;
  right: -7px;
  display: none;
}

.socialIconContainer a.fbIcon:hover span.svgIcon svg path {
  fill: var(--fbColor);
}

.socialIconContainer a.instaIcon:hover span.svgIcon svg path {
  fill: var(--instaColor);
}

.socialIconContainer a.youtubeIcon:hover span.svgIcon svg path {
  fill: var(--youtubeColor);
}

.socialIconContainer a.twitterIcon:hover span.svgIcon svg path {
  fill: var(--twitterColor);
}

/*main page notification Popup css start*/

.notifcationPopup {
  background: var(--white);
  overflow-x: hidden;
  overflow-y: scroll;
  width: 100%;
  margin: 0;
  height: 0vh;
  padding: 60px 0;
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: translateY(-200%);
  transition: all linear 0.5s;
}

.notifcationPopup.showNotifications {
  transform: translateY(0%);
  height: 100vh;
}

.notificationsContainer {
  background: var(--bs-gray-900);
  margin-top: 2rem;
  padding: 1rem;
}

h2.NotificationMainHead {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--darkBlue);
  opacity: 0;
}

.notifcationPopup.showNotifications h2.NotificationMainHead {
  opacity: 1;
}

.notificationBox {
  padding: 1rem;
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 12%);
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0 2rem 0;
}

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

.notificationBox p a {
  color: var(--darkBlue);
  text-decoration: none;
}

.notificationBox p.notificationTime {
  color: var(--primaryColor);
  margin-top: 0.5rem;
}

/*main page notification Popup css end*/

/* Normal Page content css for index page end   */

/* bottom sticky menu bar css code start  */

.bottomMenuBar {
  display: block;
  padding: 1rem 0.5rem;
  box-shadow: -1px -8px 10px 0px rgb(0 0 0 / 15%);
  position: fixed;
  width: 100%;
  background: var(--darkBlue);
  bottom: 0;
  left: 0;
  z-index: 1111;
}

.btmMenuBtn a svg {
  height: 1.5rem;
  transition: all linear 0.3s;
}

.btmMenuBtn a:hover svg,
.btmMenuBtn a:hover svg g,
.btmMenuBtn a:hover svg circle,
.btmMenuBtn a:hover svg path {
  fill: var(--primaryColor);
}

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

.btmMenuContainer .btmMenuBtn {
  width: 15%;
  text-align: center;
  flex: 1;
}

.bottomCenterCartBtn {
  width: 40%;
  flex: 1;
  position: relative;
}

a.btn.cartBtn {
  background: var(--primaryColor) !important;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  margin: 0px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -42px;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  transition: background linear 0.5s;
  border: 6px solid var(--white) !important;
}

a.btn.cartBtn:hover {
  background: var(--darkBlue) !important;
}

a.btn.cartBtn span.CartIcon svg {
  height: 1.8rem;
}

span.cartCounter {
  color: var(--black);
  background: var(--secondryColor);
  font-size: 16px;
  position: absolute;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: 100%;
  top: 0;
  right: 0px;
}

/* bottom sticky menu bar css code end  */

/*link pages commomn css start */

.headerWithBackBtn {
  display: flex;
  padding: 1rem 0.5rem;
  box-shadow: 1px 5px 10px 0px rgb(0 0 0 / 15%);
  position: fixed;
  width: 100%;
  background: var(--darkBlue);
  top: 0;
  left: 0;
  z-index: 10;
  align-items: center;
}

.col-6.adressDetailBox,
.col-6.deliveryDetailBox {
  position: relative;
}

.col-6.adressDetailBox a.editIcon {
  position: absolute;
  bottom: 17px;
  right: 11px;
  z-index: 5;
}

.col-6.adressDetailBox a.editIcon img {
  width: 20px;
}

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

.adressAndDeliveryBtns p {
  color: var(--white);
  margin: 0.5rem 0;
  font-weight: 500;
}

.col-6.deliveryDetailBox {
  background: var(--darkBlue);
  padding: 1rem;
  border-radius: 10px 0 0 10px;
}

.col-6.adressDetailBox {
  padding: 1rem;
  background: var(--primaryColor);
  border-radius: 0 10px 10px 0;
}

a.collectionLink {
  transition: all linear 0.3s;
  top: 0;
  position: relative;
  display: block;
  margin: 0.5rem 0 2.5rem 0;
}

.collectionBox {
  /* background: var(--darkBlue); */
  /* border-radius: 10px; */
  /* box-shadow: 0px 0px 11px 5px rgb(0 0 0 / 12%); */
  /* padding: 0.5rem; */
  /* min-height: 173px; */
}

.collectionImgBox img {
  width: 100%;
}

.spinAnimation img {
  /* -webkit-animation: spin 1s linear;
  -moz-animation: spin 1s linear;
  animation: spin 1s linear; */
}

.collectionImgBox {
  position: relative;
  display: flex;
  justify-content: center;
  width: 100%;
  /* margin-top: -26px; */
}

.collectionImgBox img.img-fluid {
  width: 100%;
  position: relative;
  top: -10px;
  /* left: 30px; */
  margin-bottom: -26px;
  z-index: 5;
}

.collectionTitleBox {
  margin: 0.5rem 0;
}

.collectionTitleBox h3 {
  margin: 0;
  padding: 0;
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
  word-break: break-word;
}

a.collectionLink:hover {
  top: -7px;
}

a.collectionLink:hover .collectionBox {
  /* background: var(--darkBlue); */
}

a.collectionLink:hover .collectionTitleBox h3 {
  color: var(--white);
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  25% {
    -moz-transform: rotate(360deg);
  }
  50% {
    -moz-transform: rotate(120deg) scale(0.6);
  }
  100% {
    -moz-transform: rotate(0deg) scale(1);
  }
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(360deg);
  }
  50% {
    -webkit-transform: rotate(120deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  25% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  50% {
    -webkit-transform: rotate(120deg) scale(0.5);
    transform: rotate(120deg) scale(0.5);
  }
  100% {
    -webkit-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
  }
}

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

.pageTitle h3 {
  margin: 0;
  margin-left: 28px;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 600;
}

/*offer page css start */

.offerDetailContainer {
  overflow: hidden;
  margin: 0.5rem 0;
  position: relative;
}

.offerDetailInnerContainer {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0px 0px 11px 5px rgb(0 0 0 / 12%);
  padding: 0.5rem;
  margin: 1.5rem 0 3rem 0;
}

.offerDetailInnerContainer:hover {
  background: var(--darkBlue);
}

.offerDetailInfo {
  text-align: left;
  margin-left: 1rem;
}

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

.offerDetailInnerContainer:hover p {
  color: var(--white);
}

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

.offerDetailInfo p.equalSign {
  text-align: center;
  width: 100%;
  margin: 0px auto;
  color: var(--darkBlue);
}

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

.offerDetailInnerContainer .offerImgBox {
  position: relative;
  top: -30px;
  margin-bottom: -46px;
}

.offerDetailInnerContainer .offerImgBox img.img-fluid {
  max-width: 124%;
}

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

.offerImgContainer img {
  width: 100%;
}

/* offer page css end  */

/* link page text area code start  */

.linkPageTxtDetails {
  padding: 0.5rem 0;
  color: var(--white);
}

.linkPageTxtDetails p {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 500;
  text-align: justify;
}

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

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

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

.mapArea img {
  width: 100%;
}

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

/* link page text area code end  */

/*link pages commomn css end */

/*prodduct page css start */

.productPageContainer {
  margin-top: 85px;
  padding: 0;
}

.productImageMainArea {
  position: relative;
}

.productSlider {
  position: relative;
}

.pizzaWoodenPlatee {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 135px;
  left: 50%;
  transform: translateX(-50%);
}

.pizzaWoodenPlate {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
}

.pizzaarrow {
  width: 60px;
  height: 50px;
  color: var(--primaryColor);
  position: relative;
  left: 264px;
  margin: 0px 2px 105px 2px;
  padding: 0;
}

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

.pizzaarrow p {
  font-size: 16px !important;
  display: inline-block;
  position: relative;
  right: 138px !important;
  text-align: left;
  font-weight: 700;
  margin: 0.2rem;
  white-space: nowrap;
}

.pizzaWoodenPlate img {
  width: 75%;
  transform: rotate(0deg);
  transition: all linear 0.8s;
}

.pizzaWoodenPlatee img {
  width: 75%;
  transform: rotate(0deg);
  transition: all linear 0.8s;
}

.rotatePlate {
  transform: rotate(45deg) !important;
}

.productSliderContainer {
  width: 100%;
}

.owl-item .productSliderContainer img {
  opacity: 0.5;
  transform: scale(1) translate(0px, 15px);
  transition: transform linear 0.5s;
}

.owl-item.active.center .productSliderContainer img {
  opacity: 1 !important;
  transform: scale(1) translate(0);
}

.owl-item.active.center
  .productSliderContainer.PizzaClicked
  img.img-fluid.borderStar {
  border: var(--bs-teal) solid 3px;
  border-radius: 83%;
  opacity: 0.8 !important;
  padding: 0px;
  margin: 0px;
}

.owl-item.active.center
  .productSliderContainer.PizzaClicked
  img.img-fluid.border-Star {
  opacity: 0.8 !important;
  padding: 0px;
  margin: 0px;
}

.customOfferPageContent {
  margin-top: 1.5rem;
  padding: 1rem;
}

.prodPageContent {
  margin-top: 1.5rem;
  padding: 1rem 1rem 5rem 1rem;
}

.productDealsSuggestions {
  margin-top: -63px;
  margin-bottom: 100px;
}

.productSliderContainer .prodPriceAndName {
  display: none;
}

h2.prodTitle a {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  transition: all linear 0.3s;
}

.poductSizesSimple,
.productExtra,
.poductSizes {
  margin: 1.5rem 0 0 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

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

.prodIngDetails {
  width: 100%;
}

.prodIngDetails p {
  margin: 0;
  color: var(--white);
  font-weight: 500;
}

.prodIngDetails p.offerSelectName {
  color: var(--white);
  font-weight: 700;
}

.prodIngDetails p.prodPoints {
  color: var(--black);
  opacity: 0.5;
}

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

.prodPrice,
.prodPrice h3 {
  color: var(--primaryColor);
  font-size: 1.8rem;
  margin: 0;
  font-weight: 600;
  align-items: center;
}

button.btn.directAddToCartBtn,
button.btn.prodTypShowBtn,
.prodPrice {
  flex: 1;
  display: flex;
  width: 100%;
}

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

span.AddIcon svg {
  width: 25px;
}

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

div#productImgaeClone {
  transition: all linear 1s;
  width: 61%;
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  position: fixed;
  top: 101px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

div#productImgaeClone img.img-fluid {
  width: 100%;
  position: relative;
  transition: transform linear 1s;
}

.cartErrorMessage {
  display: none;
}

.cartErrorMessage p {
  margin: 0;
  color: var(--primaryColor);
  text-align: center;
}

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

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

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

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

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

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

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

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

/* simple ajouter page css code start  */

.productImageContainer {
  width: 85%;
  padding: 0.5rem 0;
  margin: 0px auto;
  position: relative;
  overflow: hidden;
}

.simpleProductImage {
  margin-top: -39px;
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin-bottom: -48px;
  top: -10px;
  position: relative;
}

img.productPlate.img-fluid {
  width: 100%;
  /*transition: transform linear 0.8s;*/
}

.prouctOriginalImage {
  position: absolute;
  width: 85%;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

img.img-fluid.abovePlateImg {
  width: 100%;
  transition: transform linear 0.5s;
}

/* simple ajouter page css code end  */

/* custom pizza css start  */

.cutomProdContainer {
  position: relative;
  width: 80%;
  overflow: hidden;
  margin: 0px auto;
  transition: all linear 0.5s;
}

.cutomProdContainer .prouctOriginalImage {
  position: relative;
  left: 0;
  top: 0;
  transform: none !important;
  margin: 0px auto;
  width: 100%;
}

.prodIngContainer {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transition: all linear 1s;
  transform: translate(-50%, -50%) scale(1);
}

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

.ingredientsBtnContainer {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.5rem;
  position: relative;
  left: -12px;
}

.productIngredientBtns {
  width: 25%;
  position: relative;
  z-index: 2;
}

.specialIngBtnContainer {
  /* margin-top: 20px; */
  transition: all linear 0.3s;
  position: relative;
  /* padding-bottom: 50px; */
  top: -88px;
  /* transform: scale(1.2); */
}

.quantity {
  /* max-width: 200px; */
  /* background: white; */
  padding: 4px;
  /* border-radius: 20px; */
  /* margin: 0 0 0 18vw; */
  /* text-align: center !important; */
}

.theta-carousel-inner-container {
  position: relative !important;
  top: -16px !important;
  height: 424px !important;
  align-items: top;
  /*! margin-top: -12px !important; */
  padding-top: 0px !important;
}

.specialIngBtnContainer button,
.productIngredientBtns button {
  width: 100%;
  position: relative;
}

.productIngredientBtns button img {
  width: calc(100% + 30px);
}

.ingredientsBtnContainer .productIngredientBtns:nth-child(1) {
  left: -16px;
}

.ingredientsBtnContainer .productIngredientBtns:nth-child(2) {
  left: -5px;
  top: -32px;
}

.ingredientsBtnContainer .productIngredientBtns:nth-child(3) {
  top: -30px;
}

.draggable.dragging,
.draggable .dragging,
img.btnImg.draggable.dragaware.dragging {
  opacity: 1;
}

button.btn.fadeDisabled img.btnImg,
button.btn.fadeDisabled img.btnImg.draggable.dragaware.dragging {
  opacity: 0.5;
}

span.removIcon {
  position: absolute;
  top: 32%;
  left: 62%;
  transform: translate(-50%, -50%);
  width: 55px;
  display: block !important;
}

span.removIcon img {
  width: 100% !important;
  margin: 0px auto;
  opacity: 0;
  position: relative;
  left: 11px;
  display: block !important;
}

.remoIcon {
  position: absolute;
  top: 28%;
  left: 62%;
  transform: translate(-50%, -50%);
  background: white;
  border-radius: 50%;
  width: 64px;
  display: block !important;
}
.remoIcon img {
  width: 100% !important;
}

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

.fadeDisable img.plus {
  color: var(--primaryColor) !important;
}

.fadeDisable img.minus {
  color: var(--primaryColor) !important;
}

.fadeDisable input.customInput {
  color: var(--primaryColor) !important;
}

.cartFormContainer {
  position: relative;
  z-index: 5;
  width: 85%;
  margin: 30px auto;
}

.ingrCheckBoxes {
  display: none !important;
}

form.AddToCartForm {
  background: var(--primaryColor);
  border-radius: 10px;
  padding: 0 1rem;
}

form.AddToCartForm .customAddToCartButtons .prodPrice h3 {
  color: var(--white);
}

form.AddToCartForm button.btn.addToCartBtn svg path {
  fill: var(--primaryColor);
}

form.AddToCartForm button.btn.addToCartBtn svg circle {
  fill: var(--white) !important;
}

.ingrradioBoxes {
  display: none !important;
}

/*pizzaBox css start */

div#originalPizzaBox {
  display: none !important;
}

.animatedPizzaBox {
  position: absolute;
  top: calc(50% + 39px);
  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);
}

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

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

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

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

.readForPackingBox {
  transition: all linear 1s;
}

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

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

/*pizzaBox css end*/

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

.menuOfferItems ul {
  display: flex;
  align-items: center;
  border: none;
  position: relative;
  z-index: 5;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

.menuOfferItems ul li {
  display: inline !important;
  width: max-content !important;
}

.extraSpecialIng ul#extraIngredients {
  width: 100%;
  align-items: center;
  /* border: 10px solid #000; */
  position: relative;
  z-index: 5;
  flex-wrap: nowrap;
  /* justify-content: flex-start; */
  /* overflow-y: hidden; */
  overflow-x: scroll;
  padding-bottom: 0px;
  box-sizing: content-box;
}

.menuItemSelection ul#extraIngredients::-webkit-scrollbar {
  display: none;
  border: none !important;
}

ul.nav-tabs {
  border: none !important;
}

/* width */

.extraSpecialIng ul#extraIngredients::-webkit-scrollbar {
  width: 1px;
  display: none;
}

/* Track */

.extraSpecialIng ul#extraIngredients::-webkit-scrollbar-track {
  display: none;
}

/* Handle */

.extraSpecialIng ul#extraIngredients::-webkit-scrollbar-thumb {
  display: none;
}

/* Handle on hover */

.extraSpecialIng ul#extraIngredients::-webkit-scrollbar-thumb:hover {
  display: none;
}

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

.menuOfferItems ul a.nav-link {
  min-width: 85px;
}

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

.productDealsSuggestions .productSlider {
  margin: 1rem 0;
}

.simpleProdCol {
  padding: 0 1rem;
}

.simpleProdCol .simpleCol {
  margin: 1rem 0;
  position: relative;
  text-align: center;
}

.simpleProdCol .simpleCol h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

.productImageMainArea.newCustomProd {
  margin-top: 114px;
}

/* custom pizza css end  */

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

.prodInfoAndCustomBtn p {
  margin: 0 8px 0 0;
  color: var(--white);
  font-weight: 500;
}

.prodInfoAndCustomBtn a svg {
  width: 25px;
}

.prodInfoAndCustomBtn a svg path {
  fill: var(--lightGreen);
}

.specialIngCarousel {
  margin-bottom: -64px;
}

.specialIngBtnContainer button.btn {
  width: 68%;
  font-size: 42px;
  color: var(--white);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.specialIngBtnContainer button.btn img {
  width: 270px;
  height: auto;
}

.theta-carousel-inner-container {
  transform: scale(0.6) !important;
}

.curveSlider.boissonCurveSlider {
  margin: 3px 10px 10px 0px;
}

.topCurveIng {
  transform: rotate(180deg);
}

.topCurveIng .specialIngBtnContainer button.btn img {
  transform: rotate(180deg);
}

.topCurveIng .curveSlider {
  margin-top: -106px;
  margin-bottom: -110px;
  position: relative;
}

.curveSlider {
  margin-top: -89px;
  margin-bottom: -80px;
  position: relative;
}

.curveSlider::before {
  content: "";
  position: absolute;
  background: var(--black);
  width: 57px;
  height: 31px;
  right: -2px;
  top: 89px;
  z-index: 5555;
}

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

/*custom simple Prod css start */

.simpleProductImage.customProdSimple {
  margin-top: 0;
  padding-bottom: 60px;
}

.simpleProductImage.customProdSimple .productImageContainer {
  margin-top: -71px;
}

.simpleProductImage.customProdSimple .productIngredientBtns:nth-child(3) {
  top: -30px;
  left: 10px;
}

.simpleProductImage.customProdSimple .productIngredientBtns:nth-child(4) {
  top: 4px;
  left: 3px;
}

.simpleProductImage.customProdSimple .prodIngContainer {
  z-index: 5;
}

.extraSpecialIng.fourTabsRow ul#extraIngredients {
  align-items: flex-start !important;
  position: relative;
  z-index: 5555;
}

.extraSpecialIng.fourTabsRow ul#extraIngredients li.nav-item button.nav-link {
  font-size: 12px !important;
  margin: 0.5rem 0.3rem;
}

/*custom simple Prod css end */

/*prodduct page css end */

/*linkPage css start*/

.linkPageContainer {
  padding: 4rem 1rem 3rem 0rem;
  margin: 0;
  overflow: hidden;
}

/* cart page css start */

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

.cartItemRow {
  margin: 1.5rem 0;
  position: relative;
  width: 100%;

  border-radius: 5px;

  padding: 0.5rem;
  float: right;
  color: var(--white);
  background: var(--black);
}

.cartItemRowModified {
  margin: 0.5rem 0;
  position: relative;
  width: 100%;
  padding: 0.5rem;
  float: right;
}
.cartItemRowModified p {
  color: #fff;
}
.CartBoxPartTwo {
  margin: -3.5rem 0 0.5rem 0;
  position: relative;
  width: 100%;
  background: var(--darkBlue);
  border: 1px solid var(--darkBlue);
  border-radius: 5px;
  height: 280px !important;
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
  padding: 4.5rem 0.5rem 0.5rem 0.5rem;
}

.CartBoxPartTwo::after {
  content: "";
  display: block;
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 7.5px;
  background-color: var(--darkBlue) !important;
  width: 177px;
  height: 91px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
  border-bottom: 0;
  position: absolute;
  bottom: 31vh;
  left: 10vh;
  z-index: -1;
}

.CartBoxPartTwo::before {
  content: "";
  display: block;
  -moz-border-radius: 7.5px;
  -webkit-border-radius: 10%;
  background-color: var(--darkBlue) !important;
  width: 176px;
  height: 72px;
  z-index: 1;
  position: absolute;
  top: -17px;
  left: 91px;
}

img.img-fluid.prodCartImg {
  width: calc(88% + 50px);
  max-width: calc(100% + 50px);
  position: relative;
  top: 15px;
  /*! background-color: var(--darkBlue); */
  left: 92px;
  z-index: 2;
  border-radius: 30%;
}

.cartProdDetail {
  position: relative;
  width: 100%;
  color: var(--white);
}

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

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

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

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

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

.cartItemIncDec {
  margin: 0.2rem 0 -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;
  font-weight: 600;
}

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

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

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

.yourChoiceContainer,
.promoCodeContainer {
  width: 100%;
}

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

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

button.btn.inputSubmittBtnn {
  background: var(--primaryColor) !important;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  width: 20%;
  border-radius: 6px !important;
  display: flex;
  align-items: center;
  height: 50px;
  justify-content: center;
  margin-left: 0px !important;
}

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

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

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

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

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

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

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

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

.discountInfo span svg {
  width: 20px;
}

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

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

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

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

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

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

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

a.btn.normalBtn,
button.btn.validateBtn {
  width: 100%;
  text-align: center;
  margin: 0px 0px 4vh auto;
  background: var(--primaryColor) !important;
  color: var(--white);
  padding: 0.8rem 0;
  border-radius: 10px;
  height: auto;
  font-size: 1.1rem;
  font-weight: 600;
}

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

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

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

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: 29px;
  filter: invert(100%);
}

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

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

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

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

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

/* cart page css end */

/* user form css start  */

.formPageContainer {
  padding: 1rem;
  margin: 0;
  overflow: hidden;
}

.userFormContainer {
  padding: 2rem 0 0 0;
}

.deliverySearchContainer input.form-control.rounded-pill.customInput,
.userFormContainer input.form-control.rounded-pill.customInput {
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
  padding: 0.8rem;
  background: transparent;
  color: var(--white) !important;
  border: 1px solid var(--darkGray) !important;
  font-size: 16px;
  margin: 0rem 0 1.5rem 0;
}

p.formLblTxt {
  text-align: center;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
}

.userFormContainer input.form-control.rounded-pill.customInput::placeholder {
  color: var(--white) !important;
  /* commeter par asma*/
  /*border: 1px solid var(--darkGray) !important;*/
}

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

.formFlexBtn button.btn {
  color: var(--white);
  margin: 0 1px;
  font-size: 1rem;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  min-width: 80px;
  font-weight: 500;
}

.formFlexBtn button.btn.yesBtn {
  background: var(--primaryColor) !important;
}

.formFlexBtn button.btn.noBtn {
  background: var(--darkBlue) !important;
}

/* date picker css start  */

.timePicekerWrapper,
.datePickerWrapper {
  position: relative;
}

#datepicker {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* date picker css end  */

.paymentMethodsContainer {
  position: relative;
  margin-bottom: 1rem;
}

.paymentMethodsContainer p {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 500;
}

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

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

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

.checkBoxNLbl input[type="checkbox"]::before,
.radioBoxNLbl input[type="radio"]::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--white);
  position: absolute;
  top: -10px;
  left: 0;
  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);
  position: absolute;
  top: -6px;
  width: 12px;
  height: 12px;
  left: 4px;
  z-index: 5;
  transform: scale(0);
  transition: all linear 0.3s;
}

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

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

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

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

.userFormContainer .validateOrderContainer {
  margin: 2rem 0 0 0;
}

.formSubmitPopup {
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  height: 0;
  transform: translateY(-100%);
  z-index: 55;
  background: var(--fadeBlack);
  overflow: hidden;
  transition: all linear 0.5s;
}

.submiteMessageBox {
  width: 90%;
  background: var(--white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  padding: 3rem 1rem;
  text-align: center;
  margin: 0;
  border-radius: 10px;
}

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

button#closeSubmitMsg {
  z-index: 2;
  position: absolute;
  right: 0;
  top: 4px;
}

.formSubmitPopup.showPopup {
  transform: translateY(0) !important;
  height: 100vh !important;
}

/* user form css end  */

.locationTxtDetail {
  margin: 1rem 0;
}

.locationTxtDetail h3 {
  color: var(--primaryColor);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.locationTxtDetail p {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.locationMap {
  padding: 0;
  width: 100%;
}

.locationMap img {
  width: 100%;
}

.signupFormContainer {
  margin-top: 2px;
}

.signupFormContainer .userFormContainer {
  padding: 1rem 0 2rem 0;
}

h2.formTitle {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
  color: var(--white);
}

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

/*linkPage css end*/

/* custom popup pages css start  */

.livraisonPopup {
  position: fixed;
  width: 100%;
  left: 0px;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  z-index: 55;
  background: var(--fadeBlack);
  overflow: hidden;
  transition: all linear 0.5s;
}

.popupDetailBox {
  width: 90%;
  background: var(--darkBlue);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  padding: 3rem 1rem;
  text-align: center;
  margin: 0;
  border-radius: 10px;
}

.slectorWithIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--primaryColor);
  border-radius: 50px;
  position: relative;
}

.popUp-btn {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid var(--primaryColor) !important;
  border-radius: 50px;
  position: relative;
  box-shadow: none !important;
  font-size: 1.2rem;
  font-weight: 500;
  background: transparent !important;
  color: var(--darkBlue) !important;
  /* padding-left: 45px; */
}

.popUp-btn img {
  padding: 5px;
}

.slectorWithIcon span.deliveryIcon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.slectorWithIcon span.caratSign {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.slectorWithIcon select.form-control.deliverySelection {
  box-shadow: none !important;
  border: none !important;
  font-size: 1.2rem;
  font-weight: 500;
  background: transparent !important;
  color: var(--darkBlue);
  padding-left: 45px;
}

.slectorWithIcon select.form-control.deliverySelection option {
  color: var(--darkBlue);
  background: var(--lightGray);
  border: none !important;
  box-shadow: none !important;
}

.slectorWithIcon select.form-control.deliverySelection option:hover,
.slectorWithIcon select.form-control.deliverySelection option:focus,
.slectorWithIcon select.form-control.deliverySelection option:active,
.slectorWithIcon select.form-control.deliverySelection option:checked {
  background-color: var(--primaryColor) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}

.popupBtnWithHeading {
  text-align: left;
  padding: 0.5rem;
}

p.popupSimpleText,
h4.popupHeading {
  color: var(--white);
}

h4.popupHeading {
  font-size: 20px;
}

a.deliveryIconBtn,
a.takeAwayIconBtn {
  width: 100%;
  display: flex;
  margin: 0.5rem 0;
  align-items: center;
  font-weight: 600;
  font-size: 22px;
  color: var(--white) !important;
}

a.deliveryIconBtn {
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--darkBlue);
}

a.deliveryIconBtn span,
a.takeAwayIconBtn span {
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  background: var(--primaryColor);
}

a.takeAwayIconBtn span img {
  width: 25px;
}

a.deliveryIconBtn span img {
  width: 33px;
}

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

.deliveryInfo .deliveryIconRound {
  background: var(--primaryColor);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.deliveryInfo .deliveryIconRound img {
  width: 30px;
}

.LivraisonHead h2 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0 0.5rem;
  text-align: center;
}

.deliveryInfo span.arrowIcon img {
  width: 23px;
}

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

button.searchBtn {
  position: absolute;
  top: 50%;
  left: 10px;
  padding: 0;
  transform: translateY(-50%);
}

span.searchIcon svg {
  width: 30px;
}

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

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

.locationContainer {
  width: 90%;
  padding: 1rem 0;
  margin: 1rem auto;
  overflow: hidden;
  border-bottom: 2px solid var(--darkBlue);
}

.locationContainer h4 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--secondryColor);
  margin-bottom: 1rem;
}

.locationContainer a {
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.locationContainer a span svg {
  width: 35px;
}

.loginPageHeading img {
  width: 60px;
  margin: 1rem auto;
}

.loginPageHeading {
  text-align: center;
}

.loginPageHeading h1 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0;
}

.loginPageHeading p {
  margin: 2rem 0 1rem 0;
  color: var(--white);
  opacity: 0.6;
  line-height: 1.2;
}

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

.inputWithIcon input.form-control.rounded-pill.customInput {
  padding-left: 3rem;
  border: 1px solid var(--darkGray) !important;
}

.formSpecialInstruction {
  padding: 0;
  margin: 1rem 0;
}

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

.formSpecialInstruction p {
  margin: 0 0 0.5rem 0;
  color: var(--white);
  opacity: 1;
  line-height: 1.2;
}

.checkBoxNLbl label span.fadedTxt {
  color: var(--white);
  font-weight: 400;
  opacity: 0.6;
}

.formSpecialInstruction h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--white);
  opacity: 0.6;
  margin: auto;
}

.formSpecialInstruction h2::after,
.formSpecialInstruction h2::before {
  content: "";
  background: var(--darkBlue);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 2px;
  width: 40%;
}

.formSpecialInstruction h2::before {
  left: 1%;
}

.formSpecialInstruction h2::after {
  right: 1%;
}

.linkToSignupForm {
  margin: 1rem 0;
  position: relative;
}

.linkToSignupForm a.btn {
  text-align: center;
  margin: 0px auto;
  background: var(--primaryColor) !important;
  color: var(--white);
  padding: 1rem 0;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  position: relative;
}

span.btnImg {
  position: absolute;
  right: 15px;
  top: 26%;
  transform: translateY(-50%);
}

.specialFormHeading {
  margin: 1rem 0;
  text-align: center;
}

.specialFormHeading h1 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem auto;
  position: relative;
  width: max-content;
}

.specialFormHeading h1::before {
  content: "";
  height: 4px;
  width: 16%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -18%;
  background: var(--primaryColor);
}

p.fadedTxt,
.specialFormHeading p {
  margin: 0;
  opacity: 0.6;
  color: var(--white);
}

p.fadedTxt a {
  color: var(--black);
  text-decoration: underline !important;
}

.loginFormContainer .userFormContainer .checkBoxNLbl {
  text-align: center;
  justify-content: center;
}

/* custom popup pages css end  */

/* main content  css code by professor  end  */

/* media queries for the case of much small devices start*/

@media only screen and (max-width: 425px) {
  .poductSizesSimple ul li a,
  .productExtra ul li a,
  .poductSizes ul li a {
    font-size: 0.9rem;
    padding: 10px 8px;
  }
  .col-6.deliveryDetailBox,
  .col-6.deliveryDetailBox {
    padding: 0.8rem;
  }
  .adressAndDeliveryBtns h2 {
    font-size: 1rem;
  }
  .adressAndDeliveryBtns p {
    font-size: 0.8rem;
  }
}

@media only screen and (max-width: 390px) {
  .theta-carousel-inner-container {
    transform: scale(0.5) !important;
    height: 400px !important;
  }
  .curveSlider::before {
    top: 90px;
  }
  .offerImg {
    display: flex;
    width: 154px;
    top: -39px;
    right: -14px;
  }
  .extraSpecialIng.fourTabsRow ul#extraIngredients li.nav-item button.nav-link {
    margin: 0.5rem 0.2rem;
  }
  .poductSizesSimple ul li a,
  .productExtra ul li a,
  .poductSizes ul li a {
    font-size: 0.8rem;
    padding: 10px 8px;
  }
  .loaderLogoContainer img {
    width: 80%;
  }
  ul.subMenu,
  ul.menuItems {
    position: relative;
    padding-left: 0.5rem;
  }
  col-6.deliveryDetailBox,
  .col-6.deliveryDetailBox {
    padding: 0.7rem;
  }
  .adressAndDeliveryBtns h2 {
    font-size: 0.9rem;
  }
  .adressAndDeliveryBtns p {
    font-size: 0.8rem;
  }
  .extraSpecialIng ul#extraIngredients button.nav-link {
    font-size: 14px;
  }
}

@media only screen and (max-width: 315px) {
  .prodTypeBtns a {
    font-size: 0.9rem;
  }
  .prodTypeBtns button.btn.closeProdTypeBtn span svg {
    width: 17px;
  }
  .prodTypeBtns button.btn.closeProdTypeBtn {
    right: 6px;
  }
}

@media only screen and (max-width: 300px) {
  .hamBurgerIcon button#menuBtn span {
    width: 20px;
    height: 3px;
  }
  .hamBurgerIcon button#menuBtn span:nth-child(2) {
    margin: 0.3rem 0;
    width: 30px;
  }
  button.btn.NotificationBtnimg {
    width: 35px !important;
  }
  span.svgIcon svg {
    height: 1.5rem;
  }
  h2.socialHeading {
    font-size: 1.3rem;
  }
  a.btn.cartBtn {
    width: 55px;
    height: 55px;
  }
  a.btn.cartBtn {
    border: 4px solid var(--white) !important;
  }
  .collectionTitleBox h3 {
    font-size: 1rem;
  }
}

/* media queries for the case of much small devices end*/

select {
  border: none !important;
  /*! box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%); */
  width: 100%;
  padding: 0.8rem;
  padding-left: 3rem;
  color: var(--white) !important;
  /* -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;*/
  /* background: url(img/caret-down.svg) 100% / 15% no-repeat; */
  border: 1px solid var(--darkGray) !important;
  font-size: 15px;
  /* background: url(/img/caret-down-fill.svg) 90% / 4.5% no-repeat;*/
  background-position: calc(100% - 0.95rem) center !important;
  background: none;
}

select span.inputBoxIcon {
  top: 30% !important;
}

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

.monPanier span {
  color: var(--primaryColor);
  margin-left: 30px;
}

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

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

.mesCommandes p {
  font-weight: bold;
}

.mesCommandes p:nth-child(1) {
  color: var(--secondryColor) !important;
}

.mesCommandes p:nth-child(3) {
  color: var(--primaryColor) !important;
}

.mesCommandes img {
  /*! filter: invert(1000) */
}

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

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

.cartPanier span {
  color: var(--royaleBlue);
}

.panierTotal {
  color: var(--primaryColor);
  border-top: lightgrey 0.1rem solid;
  padding: 5px;
  font-size: 24px !important;
}

.ingPriz {
  color: var(--Green) !important;
}

.order-list-icon {
  margin-right: 10px;
}

.prodQunatitChanger {
  margin: 1rem 0;
}

.prodQunatitChanger {
  /* display: block;
  display: inline;
  display: inherit; */
  display: inline-block;
}

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

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

/* Chrome, Safari, Edge, Opera */

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

/* Firefox */

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

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

.prod-quantity {
  background-color: #d9d9d9;
  border-radius: 50px;
  height: 90px;
  z-index: 9999;
}

.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;
  font-weight: 600;
  color: #fff;
}

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

.quantity-number {
  background-color: transparent;
  border: none;
  text-align: center;
  font-size: 20px;
  width: 50px;
}

.quantity-number:hover {
  border: 3px solid var(--primaryColor) !important;
  border-radius: 10px;
}

.quantity img {
  filter: invert(1);
  font-size: 80px !important;
  width: 56px;
}

img.plus.showcolor {
  color: var(--primaryColor);
}

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

.InputCustom {
  color: var(--black);
}

input.InputCustom.Dot {
  color: var(--primaryColor) !important;
}

.livraisonBtn {
  box-shadow: 1px 5px 10px 0px rgb(0 0 0 / 15%);
  padding: 20px 0px;
  border: 1px solid var(--primaryColor);
  border-radius: 20px;
}

.livraisonBtn img {
  margin: 0 15px 0 30px;
}

.livraisonBtn h5 {
  margin: 5px 0 0 10px;
  color: var(--white);
}

.livraisonBtn a {
  color: var(--darkColor);
}

.quantity input {
  width: 50px !important;
  height: 60px;
  color: black;
  border: transparent 1px solid;
  font-size: 46px;
  text-align: center;
  font-weight: 500;
  background: transparent;
  margin: 4px 10px 0 10px;
}

.quantity {
  max-width: 200px;
  background: white;
  padding: 4px;
  border-radius: 20px;
  margin: 0 0 0 18vw;
  text-align: center !important;
}

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

.pl-1 {
  padding-left: 10px;
  border: 1px solid var(--darkGray) !important;
}

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

.w-95 {
  width: 95% !important;
}

.votreFidelite {
  margin: 50px 0px;
}

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

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

.boxPd {
  padding: 50px;
}

@media only screen and (max-width: 570px) {
  .votreFidelite p {
    margin-top: 0px;
  }
  .boxPd {
    padding: 20px;
  }
}

.theta-carousel {
  background: url(../img/curve-bar.png) center bottom no-repeat;
}

.ingSliderTxt {
  color: var(--white) !important;
  font-size: 2.2rem !important;
  text-align: center;
}

.checked {
  color: orange;
}

.avisPage span {
  color: var(--secondryColor);
}

.progress-bar {
  background-color: var(--primaryColor) !important;
}

img.img-fluid.Symbol-art {
  display: none;
  position: absolute;
  bottom: 197px;
  left: 189px;
  background: white;
  border-radius: 49%;
  width: 43px;
}

img.img-fluid.SymbolArt {
  display: none;
  position: absolute;
  bottom: 95px;
  left: 98px;
  background: white;
  border-radius: 49%;
  width: 28%;
}

.owl-item.active.center
  .productSliderContainer.PizzaClicked
  img.img-fluid.Symbol-art {
  display: block;
}

.owl-item.active.center .productSliderContainer.PizzaClicked img {
  opacity: 1;
}

.owl-item.active.center
  .productSliderContainer.PizzaClicked
  img.img-fluid.SymbolArt {
  display: block;
}

button.nav-link.buttonnav {
  color: black;
  background: white;
  margin: 4px;
  border-radius: 20px;
  width: inherit;
}

button.nav-link.buttonnav.active {
  color: white !important;
  background: var(--primaryColor) !important;
  border: var(--primaryColor);
}

.customSpan {
  font-weight: 600 !important;
}

hr.CustomBorderLine {
  width: 50%;
  margin: 5px 2px 22px 140px;
  text-align: center;
}

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

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

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

.pinkclassPlus {
  color: var(--primaryColor) !important;
  font-weight: 700 !important;
}

.CustomIconSpan {
  position: absolute;
  top: 3%;
  right: 1%;
}

.TextCustom {
  color: white !important;
  margin: 0 125px 0 0rem !important;
  font-size: 30px !important;
  font-weight: 800 !important;
}

.productSliderContainer .prodInfoAndCustomBtn {
  display: none;
}

.customColorClass p {
  font-size: 12px !important;
}

.customColorClass h4 {
  font-size: 13px !important;
}

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

.CustomMapMsgBoxx:after {
  content: " ";
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 3px solid var(--primaryColor);
  border-right: 12px solid var(--primaryColor);
  border-left: 3px solid transparent;
  position: absolute;
  outline-offset: 1px;
  right: 93%;
  top: -18%;
  transform: rotate(75deg);
}

.CustomMapMsgBoxx:before {
  content: " ";
  width: 0px;
  height: 0px;
  border-top: 10px solid transparent;
  border-bottom: 1px solid white;
  border-right: 9px solid white;
  border-left: 3px solid transparent;
  z-index: 1;
  position: absolute;
  outline-offset: 0px;
  right: 94%;
  top: -16%;
  transform: rotate(75deg);
}

.CustomMapMsgBoxx {
  width: 161px;
  height: 57px;
  background-color: white;
  /* bottom: 430px; */
  border-radius: 10px !important;
  font-size: 10px;
  position: absolute;
  text-align: center !important;
  left: 196px;
  bottom: 197px;
  color: var(--black);
  border: var(--primaryColor) solid 1px;
}

.customNewDesign {
  color: var(--lightGreen);
  display: inline-block;
}

.customNewDesign img {
  width: 70px;
  vertical-align: middle;
  height: 70px;
}

.customNewDesign span {
  vertical-align: middle;
  font-size: 20px;
  padding: 10px 0px 10px 1px;
  vertical-align: sub;
  color: #eec439 !important;
  font-weight: 600;
}

.col-12 a {
  color: var(--black);
  padding: 5px;
  margin: 0;
  font-size: 13px;
}

.col-12 a.active {
  color: var(--primaryColor);
}

.col-12 a:hover {
  color: var(--white);
}

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

.CustomLogosvg {
  text-align: right;
  position: absolute;
  right: 20px;
}

span.titleClass {
  color: black !important;
  font-size: 29px;
}

.IndexBtn {
  background: var(--primaryColor);
  border: none;
  padding: 10px;
  border-radius: 5px;
  color: var(--navydarkblue);
  width: 100%;
}

.IndexBtn img {
  width: 20px;
  height: 20px;
  transform: rotate(-25deg);
  /*! filter: invert(100%); */
}

.IndexBtn2 {
  background: transparent;
  border: 1px solid var(--white);
  padding: 10px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--primaryColor);
  animation: glowingg 1300ms infinite;
  margin: 35px 0px 0px 0px;
}

.IndexBtn2 img {
  width: 20px;
  height: 20px;
  transform: rotate(-25deg);
}

/* .IndexBtn:hover {
  background: var(--primaryColor);
  border: 1px solid var(--white);
 color:white;
} */

.customTab.show {
  display: block;
}

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

.customRadio {
  display: block;
  position: relative;
  padding-left: 20px;
  /*margin-bottom: 12px;*/
  cursor: pointer;
  font-size: 15px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: capitalize;
}

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

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

.checkpoint {
  position: absolute;
  top: 24px;
  left: 0;
  height: 30px;
  width: 30px;
  background: none;
  border-radius: 26px;
  border: 4px solid var(--white);
}

.btnImg {
  width: 58px;
  margin: 8px;
}

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

.paddingClass {
  padding-right: 0rem !important;
  padding-left: 2.5rem !important;
}

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

#CustomDesc {
  width: 210px !important;
  color: var(--white);
  font-size: 14px !important;
  font-weight: 300;
  margin-top: 8px !important;
}

#CustomDesc2 {
  width: 320px !important;
  color: black;
  font-size: 14px !important;
  font-weight: 300;
}

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

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

@keyframes glowing {
  0% {
    background-color: var(--white);
    box-shadow: 0 0 5px var(--primaryColor);
  }
  50% {
    background-color: var(--white);
    box-shadow: 0 0 20px var(--primaryColor);
  }
  100% {
    background-color: var(--white);
    box-shadow: 0 0 5px var(--primaryColor);
  }
}

@keyframes glowingg {
  0% {
    background-color: transparent;
    color: var(--primaryColor);
  }
  50% {
    background-color: transparent;
    color: var(--darkBlue);
  }
  100% {
    background-color: transparent;
    color: var(--primaryColor);
  }
}

.IndexBtn {
  animation: glowing 1300ms infinite;
  width: 90%;
  position: relative;
  left: 1rem;
  margin: 2rem 0rem 0px;
}

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

.checkmark {
  position: absolute;
  top: 24px;
  left: 0;
  height: 30px;
  width: 30px;
  background: none;
  border-radius: 8px;
  border: 4px solid var(--white);
}

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

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

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

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

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

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

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

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

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

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

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

/* Style the checkmark/indicator */

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

.customRadio .checkpoint::after {
  left: 6px;
  top: 4px;
  width: 9px;
  height: 12px;
  border-radius: 127px;
  background-color: var(--primaryColor);
}

/*radio button*/

.userIcon::before {
  content: "";
  width: 10px;
  height: 10px;
  background: var(--primaryColor);
  padding: 0px 0px;
  border-radius: 110%;
  transform: scale(1);
  display: block;
  position: absolute;
  right: 26px !important;
  bottom: 34px !important;
}

.prodPriceAndAddBtn .addToCartBtn .AddIcon svg path {
  fill: var(--white);
}

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

.prodPriceAndAddBtn .addToCartBtn .AddIcon svg g circle:hover {
  fill: var(--bs-gray-600) !important;
}

.addToCartBtn .AddIcon svg path {
  fill: var(--white);
}

.addToCartBtn .AddIcon svg g circle {
  fill: var(--white) !important;
}

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

.customAddToCartButtons .addToCartBtn .AddIcon svg path {
  fill: var(--white);
}

.customAddToCartButtons .addToCartBtn .AddIcon svg g circle {
  fill: var(--white) !important;
}

.customAddToCartButtons .addToCartBtn .AddIcon svg g circle:hover {
  fill: var(--bs-gray-600) !important;
}

.prodTypShowBtn .AddIcon svg path {
  fill: var(--white);
}

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

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

.closeProdTypeBtn svg path {
  fill: var(--white) !important;
}

.closeProdTypeBtn svg circle {
  fill: var(--bs-gray-700);
}

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

textarea {
  color: var(--darkGray);
  border-radius: 10px;
  width: 100%;
  padding: 15px 0 0 0;
}

.btmMenuBtn svg g,
.btmMenuBtn svg path {
  fill: var(--white) !important;
}

.btmMenuBtn svg circle {
  fill: var(--white) !important;
}

table {
  color: var(--white) !important;
}

.customSpan {
  color: var(--white);
}

.searchIcon svg path {
  fill: var(--white) !important;
}

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

option {
  color: var(--black);
}

.prodInfoAndCustomBtn svg path {
  fill: var(--white) !important;
}

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

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

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

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

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

.form-control,
.form-control:focus,
textarea,
.textarea:focus {
  box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
  padding: 0.8rem;
  background: transparent;
  color: var(--white) !important;
  border: 1px solid var(--darkGray) !important;
  font-size: 16px;
  margin-top: 0rem;
}

.currentReview {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /* border: 1px solid #000; */
  background: #fff;
  color: #000;
  /*! border-radius: 40px; */
  padding: 3vw;
  line-height: 4.7vw;
  margin: 50px 0 0 0;
}

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

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

.currentReview .title .strip {
  background-color: #7f7f7f;
  color: #fff;
  padding: 0.1vw 0.6vw;
  font-size: 4vw;
  margin-top: 19px;
}

.currentReview h3 {
  font-size: 6vw;
}

.currentReview h3 img {
  width: 7vw;
}

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

.swiper {
  /* width: 300px !important; */
  height: 100%;
  margin: 15px auto 10px auto !important;
}

.swiper-slide {
  /* text-align: center; */
  /* font-size: 18px; */
  /* background: transparent !important; */
  display: flex;
  /* justify-content: center; */
  /* align-items: center; */
  /* width: 50px !important; */
  /* margin-left: 27px !important; */
}

.swiper-slide img {
  display: block;
  width: fit-content;
  width: 33px;
  object-fit: cover;
}

.swiper-slide {
  /* height: 15% !important; */
}

.swiper-slide-next img {
  width: 100%;
}

.swiper-wrapper {
  align-items: center !important;
}

.swiper-button-next:after {
  content: url(../img/right-arrow.png) !important;
  object-fit: cover;
}

.swiper-button-prev:after {
  content: url(../img/left-arrow.png) !important;
  object-fit: cover;
}

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

.reviewBtn a {
  color: #fff;
  text-decoration: none;
  /*! border: 1px solid #fff; */
  padding: 2vw 9vw;
  border-radius: 50px;
  transition: all 0.2s ease-in-out;
  font-size: 1rem;
  background: var(--primaryColor);
  margin: 30px auto 10px auto;
}

.headerLogo img {
  width: 90px !important;
}

input[name="captcha"] {
  border-radius: 10px !important;
  width: 185% !important;
  height: 55px !important;
}

.evenTxt {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  top: 50%;
}

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

.evenTxt .txt-main {
  background: #fff;
  border-radius: 30px;
  font-weight: bold;
}
.evenTxt .txt-main h1 {
  font-weight: bold;
}

.evenTxt h1 {
  font-size: 12px;
  color: #000;
  padding: 10px 10px;
  text-align: center;
}

.setposition .col-md-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.avec .col-lg-12 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 20px 0px;
}

.evenTxt .evec-imgs {
  display: flex;
  align-items: center;
  justify-content: center;
}
.evenTxt .evec-imgs img {
  width: 100%;

  animation: flickerAnimation 1.5s infinite;
}
.mainMobileImg {
  width: 80%;
}
@keyframes flickerAnimation {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(0.9, 0.9);
  }
  100% {
    transform: scale(1, 1);
  }
}

.owl-carousel .owl-stage-outer {
  overflow: hidden !important;
}

.leaflet-popup-pane p {
  color: #000;
}
.leaflet-popup-content p b {
  color: var(--primaryColor) !important;
}
h5.modal-title {
  color: var(--primaryColor);
}
.modal-header .modal-title {
  color: var(--primaryColor);
}

.ui-datepicker-header .ui-datepicker-title {
  color: var(--black) !important;
}

.ourMenuBtns ul::-webkit-scrollbar {
  /* width of the entire scrollbar */
  background-color: var(--primaryColor);
  width: 50px !important;
}

.ourMenuBtns ul::-webkit-scrollbar-track {
  background: var(--bs-gray-700) !important; /* color of the tracking area */
}

.ourMenuBtns ul::-webkit-scrollbar-thumb {
  background-color: var(
    --primaryColor
  ) !important; /* color of the scroll thumb */
}
#extraIngredientsContent div[style="overflow:scroll;"] {
  overflow: unset !important;
}

.twitterIcon .svgIcon img {
  width: 2rem;
}

.cartBtnTxt {
  padding: 10px;
  text-align: left !important;
}

.curveSlider .quantity img.plus,
.curveSlider .quantity img.minus {
  filter: invert(100%) !important;
}

.pizzaDisplay {
  background-color: var(--white);
  margin: 0 12px; /*! border-radius: 20px; */
  padding-bottom: 15px;
  padding-top: 15px;
}
.pizzaDisplay .textSection a {
  color: #fff;
  background-color: var(--primaryColor);
  transition: all 0.1s ease-in-out;
  padding: 2vw 4vw;
  font-size: 4vw;
  border-radius: 3px;
}
.pizzaDisplay img {
  position: absolute;
  height: 62vw;
  left: 30px;
  /*! top: 300px; */
  animation: displayimg 3s infinite;
}
@keyframes displayimg {
  0% {
    rotate: -5deg;
  }
  50% {
    rotate: 5deg;
  }
  100% {
    rotate: -5deg;
  }
}
.pizzaDisplay .textSection {
  z-index: 111;
  background: var(--white);
  border-radius: 3px;
  text-align: center;
  /*! height: 72vw; */
  margin-top: 1.5vw;
  color: var(--black);
  /*! margin: 80px 0 0 0; */
  padding: 40px 0px 20px 0px;
}
.pizzaDisplay p {
  /*! font-size: 3.2vw; */
}
.pizzaDisplay .col-md-12:nth-child(1) .picSection img {
  left: -23vw !important;
}

.appArea2 {
  padding: 0px 0px 25px 0px;
  margin-bottom: 20px;
  background: #000;
  position: relative;
}
.appArea2 video {
  width: 100%;
}

.youtubeIcon span.socialNotificationIcon {
  display: none;
}

.flatpickr-calendar select {
  color: #000 !important;
  border: none !important;
}
.flatpickr-day.today {
  background: none !important;
  border: 1px solid var(--primaryColor) !important;
  color: var(--primaryColor);
}
.flatpickr-day.today:hover {
  background: var(--primaryColor) !important;
  border: 1px solid var(--primaryColor) !important;
  color: var(--white) !important;
}
.prodMenu {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white);
  padding: 20px 10px;
  border-radius: 20px;
  margin-bottom: 30px;
}
.prodMenu .prodImg {
  width: 40%;
}
.prodMenu .prodImg img {
  width: 100%;
}

.prodMenu .prodtxt {
  width: 60%;
  padding-left: 10px;
}

.prodMenu .prodtxt h1 {
  font-family: SansitaOne;
  font-size: 1.5rem;
  color: var(--primaryColor);
}

.prodMenu .prodtxt p {
  font-size: 1.2rem;
  color: var(--black);
  font-weight: 700;
}

.prodMenu .prodtxt a {
  font-family: SansitaOne;
  font-size: 1rem;
  color: var(--white);
  background: var(--primaryColor);
  border-radius: 20px;
  padding: 10px 15px;
}
.prodMenu .prodtxt a:hover {
  color: var(--white);
  background: var(--black);
}
.socialapps {
  /* position: absolute; */
  top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-direction: column; */
  /* right: 0; */
  /* background-color: rgba(0, 0, 0, 0.6); */
}
.socialapps img {
  width: 100%;
  margin: 10px 0px;
  padding: 0px 10px;
}
input[type="date"] {
  color-scheme: dark;
}

/* Top Hero Start */

.swiper {
  width: 100%;
  height: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
}

.mySwiper2 .swiper-pagination {
  display: flex;
  align-items: center;
  padding-left: 36vw;
  margin-bottom: 18vw;
}
.mySwiper2 .swiper-pagination .swiper-pagination-bullet {
  width: 0.7rem;
  border-radius: 10px;
  height: 0.5rem;
  background: var(--white) !important;
  opacity: 1 !important;
  margin: 2px !important;
}
.mySwiper2
  .swiper-pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 4rem;
  border-radius: 10px;
  height: 0.5rem;
  background: var(--primaryColor) !important;
}
.mySwiper {
  height: 14%;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 0;
}
.mySwiper .swiper-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mySwiper .swiper-slide {
  width: 6.5rem !important;
  height: auto;
  opacity: 1;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
  background: var(--white);
  color: var(--black);
  border-radius: 0.7rem;
}

.swiper-slide img {
  display: block;
  /* width: 80%; */
  object-fit: cover;
}
.topHeroSlider {
  background: url(../img/topHeroSlider-bg.png);
  background-size: cover;
  margin-bottom: -2rem;
  /* padding-bottom: 3rem; */
  position: relative;
  overflow: hidden;
}

.topHeroSlider .st-heading h1 {
  font-family: ArcensDisplay !important;
  text-transform: uppercase;
  font-size: 6.5vw;
  text-align: center;
}

.topHeroSlider .st-caption p {
  font-size: 6vw;
  color: var(--white);
  font-weight: normal;
  text-align: center;
  font-family: Ananda;
  height: 60px;
}
.topHeroSlider .txtSection {
  padding: 3rem 0px 7rem 0rem;
  /* margin-left:-4rem; */
}
.topHeroSlider .slide1 {
  background: url(../img/slide1-bng.png) center center no-repeat;
  background-size: cover;
}
.topHeroSlider .slide2 {
  background: url(../img/slide2-bng.png) center center no-repeat;
  background-size: cover;
}
.topHeroSlider .slide3 {
  background: url(../img/slide3-bng.png) center center no-repeat;
  background-size: cover;
}
.smallSlider .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 8px;
  flex-direction: column;
  /* padding: 0px 50px; */
}
.smallSlider {
  left: 0vw;
  position: relative;
  background: transparent;
  bottom: 18vw;
  /* position:absolute !important; */
}
.smallSlider .swiper-slide img {
  width: 100%;
}
.smallSlider .swiper-slide.swiper-slide-active {
}
.smallSlider .swiper-slide p {
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.1rem;
  margin: 0px 0px;
  padding-top: 8px;
  text-align: center;
  letter-spacing: 0px;
  font-weight: 900;
  height: 50px;
}

.slider-btns-bg {
  position: absolute;
  bottom: 4.2rem;
  z-index: 1;
  width: 100%;
}
/* Top Hero End */

/* Noodles Section Start  */
.noodlesSection {
  background-color: var(--white);
  padding: 4rem 0px 3rem;
  margin-top: 2rem;
}
.noodlesSection .imgSeciton {
  position: relative;
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}
.noodlesSection .imgSeciton img {
  width: 95%;
  float: right;
  z-index: 1;
  position: relative;
  border-radius: 10px;
  border: 2px solid var(--primaryColor);
}
.noodlesSection .imgSeciton:hover {
  transform: scale(1.03);
  filter: brightness(1.15);
}
.noodlesSection .imgSeciton::before {
  content: "";
  border: 2px solid var(--primaryColor);
  border-radius: 10px;
  width: 88%;
  height: 78vw;
  right: 30px;
  top: -19px;
  display: block;
  position: absolute;
  z-index: 2;
}
.noodlesSection .txtSection {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.noodlesSection .caption p {
  font-family: PrizmaFine;
  color: var(--primaryColor);
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 2rem;
  margin-top: 1.5rem;
  text-align: center;
  letter-spacing: 3px;
}

.noodlesSection .nheading h1 {
  font-family: SansitaOne;
  font-size: 1.8rem;
  text-align: center;
  color: var(--black);
}
/* Noodles Section End */

.mainIndexPage {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.sliderContainer2 {
  background: #000;
  margin: 0px 0px -1px;
}

.appArea2 h3 {
  font-family: ArcensDisplay;
  text-transform: uppercase;
  font-size: 11vw;
  color: var(--primaryColor);
  text-align: center;
  margin-top: -15px;
}
.appArea2 h2 {
  font-family: Author-Think;
  font-size: 16vw;
  text-align: center;
  margin-top: 20px;
}

.appArea2 h1 {
  font-family: Ananda;
  font-size: 9.7vw;
  color: var(--white);
  text-align: center;
}
#productIngDetails p {
  color: var(--white);
}
