@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");
:root {
  --white: #ffffff;
  --black: #000000;
  --pink: #b0004f;
  --fadePink: rgba(250, 0, 67, 0.25);
  --fadeBlack: rgba(0, 0, 0, 0.8);
  --fadeGreen: rgba(206, 255, 223, 0.4);
  --darkGray: #696868;
  --darkBlue: #5c0496;
  --lightGray: #ebeaea;
  --mediumGray: #eeeeee;
  --lightPink: #ffeef2;
  --orange: #ff9900;
  --fbColor: #1e4c9a;
  --instaColor: #e8564a;
  --youtubeColor: #ff0000;
  --twitterColor: #1da1f2;
}
* {
  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-color: var(--white);
  overflow: hidden;
}
body.loaded {
  overflow: auto;
}
ul {
  list-style: none !important;
}
a {
  text-decoration: none !important;
}
p {
  font-size: 1rem;
}
input.form-control::placeholder {
  color: var(--darkBlue);
}
.form-control:hover,
.form-control:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 0.25rem var(--fadePink) !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(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 555;
}
.loaderLogoContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 1rem;
  text-align: center;
}
.loaderLogoContainer img {
  width: 200px;
}
.sideBarContainer {
  background: var(--white);
  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: 95%;
}

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(--darkBlue);
}
button.btn.logOutButton span img {
  width: 25px;
}
ul.subMenu {
  position: relative;
  padding-left: 1rem;
}
ul.menuItems {
  padding-left: 0.5rem;
}
ul.menuItems li {
  margin-bottom: 1rem;
}
ul.menuItems li a {
  color: var(--darkBlue);
  font-size: 1.2rem;
  font-weight: 600;
}
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(--white);
  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: var(--white);
  top: 0;
  left: 0;
  z-index: 15;
}
.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(--pink);
  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(--darkBlue);
  display: block;
  border-radius: 50px;
}
.hamBurgerIcon button#menuBtn span:nth-child(2) {
  margin: 0.5rem 0;
  width: 40px;
}
.activeMenuSideBar {
  transform: translate(76%, 12%);
  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: 60px;
}
/* Normal Page content css for index page start   */
.notificationMsgContainer {
  position: relative;
}

.notificationeMsg {
  margin: 0.5rem auto;
  padding: 16px;
  background: var(--fadeGreen);
  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(--pink);
}
button.btn.hideNotifcation {
  position: absolute;
  top: -16px;
  right: -17px;
  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: 2.5rem 0 1rem 0;
  padding: 1rem 0 0 0;
}

.offerImg {
  display: flex;
  width: 169px;
  justify-content: flex-end;
  position: absolute;
  top: -39px;
  z-index: 55;
  right: 0;
}
.offerImg img {
  width: 100%;
}
.offerTxt {
  text-align: left;
  background: var(--lightGray);
  border-radius: 15px;
  width: 100%;
  padding: 1rem;
  padding-left: 0.5rem;
  position: relative;
}
.offerBox.pinkBox .offerTxt {
  background: var(--lightPink);
}
.offerTxt h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pink);
  margin: 0;
}
.offerBox.pinkBox .offerTxt h2 {
  color: var(--darkBlue);
}
p.mainOffer {
  color: var(--darkBlue);
  margin: 0.5rem 0;
  font-weight: 500;
}
/* /* offer slider css end */

section.ourMenuBtns {
  position: relative;
  margin: 0.5rem 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;
}
section.ourMenuBtns ul li a {
  color: var(--darkBlue);
  font-size: 1.1rem;
  min-width: 120px;
  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;
}

section.ourMenuBtns ul li.activeMenuBtn a {
  color: var(--white);
  background: var(--darkBlue);
}
/* width */
section.ourMenuBtns ul::-webkit-scrollbar {
  width: 1px;
}

/* Track */
section.ourMenuBtns ul::-webkit-scrollbar-track {
  background: var(--white);
}

/* Handle */
section.ourMenuBtns ul::-webkit-scrollbar-thumb {
  background: var(--white);
}

/* Handle on hover */
section.ourMenuBtns ul::-webkit-scrollbar-thumb:hover {
  background: var(--white);
}

.imagesSliderArea {
  position: relative;
  width: 100%;
  padding: 1rem 0 0 0;
}
.imagesSliderArea .imgBox img {
  width: 100%;
}
.socialIcons {
  padding: 0;
  margin: 1rem 0;
}
h2.socialHeading {
  color: var(--darkBlue);
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
}
.socialIconContainer {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 2rem;
}

.socialIconContainer a {
  margin: 0 0.5rem;
  position: relative;
}
span.svgIcon svg {
  height: 1.7rem;
}
span.socialNotificationIcon {
  color: var(--white);
  background: var(--orange);
  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;
}
.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 {
  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(--pink);
  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(--white);
  bottom: 0;
  left: 0;
  z-index: 15;
  padding: 30px 0;
}
.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(--pink);
}
.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(--pink) !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: 2rem;
}

/* 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(--white);
  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(--pink);
  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(--white);
  border-radius: 10px;
  box-shadow: 0px 0px 11px 5px rgb(0 0 0 / 12%);
  padding: 0.5rem;
}
.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: flex-end;
  width: 100%;
  margin-top: -26px;
}

.collectionImgBox img.img-fluid {
  width: 95%;
  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(--darkBlue);
  font-weight: 600;
  font-size: 1.2rem;
}
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.5);
  }

  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: -32px;
  color: var(--darkBlue);
  font-size: 1.6rem;
  font-weight: 600;
}
/*link pages commomn css end */
/*prodduct page css start */
.productPageContainer {
  margin-top: 140px;
  padding: 0;
}
.productImageMainArea {
  position: relative;
}
.productSlider {
  position: relative;
}
.pizzaWoodenPlate {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -19px;
  left: 50%;
  transform: translateX(-50%);
}
.pizzaWoodenPlate 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);
}
.prodPageContent {
  margin-top: 1.5rem;
  padding: 1rem 1rem 5rem 1rem;
}
.productSliderContainer .prodPriceAndName {
  display: none;
}
h2.prodTitle a {
  color: var(--darkBlue);
  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;
  position: relative;
  z-index: 5555;
}
.poductSizesSimple ul,
.productExtra ul,
.poductSizes ul {
  background: var(--mediumGray);
  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(--darkBlue);
  font-weight: 500;
  font-size: 1rem;
  margin: 0.5rem 0.5rem;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  transition: all linear 0.3s;
}
.poductSizesSimple ul li.activeSize a,
.productExtra ul li.activeExtra a,
.poductSizes ul li.activeSize a {
  background: var(--white) !important;
  box-shadow: 0px 0px 7px 4px rgb(0 0 0 / 5%);
}
.prodIngDetails {
  width: 100%;
}

.prodIngDetails p {
  margin: 0;
  color: var(--darkBlue);
  font-weight: 500;
}
.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(--pink);
  font-size: 1.8rem;
  margin: 0;
  font-weight: 600;
  align-items: center;
}
button.btn.prodTypShowBtn,
.prodPrice {
  flex: 1;
  display: flex;
  width: 100%;
}
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;
}

.addedIntoCart {
  top: calc(100vh - 280px) !important;
  width: 60% !important;
  opacity: 1 !important;
  z-index: 55 !important;
  transform: translate(-45%, 3%) rotate(100deg) !important;
}
.addedIntoCart img {
  transform: scale(0.1) !important;
  left: 50%;
}
.cartErrorMessage {
  display: none;
}
.cartErrorMessage p {
  margin: 0;
  color: var(--pink);
  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(--pink);
  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(--darkBlue);
  font-size: 1.1rem;
  font-weight: 600;
  position: relative;
}

.prodTypeBtns a:hover {
  color: var(--pink);
}
.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(--pink);
}
/* 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: -21px;
}

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 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;
}
.fadeDisabled img {
  opacity: 0.5;
}

span.removIcon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
}

span.removIcon img {
  width: 30px;
  margin: 0px auto;
  opacity: 0;
  position: relative;
  left: 11px;
}
.fadeDisabled span.removIcon img {
  opacity: 1 !important;
}

.cartFormContainer {
  position: relative;
  z-index: 5;
}
.ingrCheckBoxes {
  display: none !important;
}
form.AddToCartForm {
  background: var(--pink);
  border-radius: 10px;
  padding: 0 1rem;
}
form.AddToCartForm .customAddToCartButtons .prodPrice h3 {
  color: var(--white);
}

form.AddToCartForm button.btn.addToCartBtn svg path {
  fill: var(--pink);
}

form.AddToCartForm button.btn.addToCartBtn svg circle {
  fill: var(--white);
}
.ingrradioBoxes {
  display: none !important;
}

/*pizzaBox css start */
div#originalPizzaBox {
  display: none !important;
}
.animatedPizzaBox {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  z-index: 0;
  width: 100%;
  transition: all linear 0.5s;
}
.pizzaBoxContainer {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 0;
  perspective: 1100px;
  perspective-origin: 50% -414px;
}

.pizzaBoxCube {
  margin-bottom: 100px;
  position: relative;
  width: 100%;
  height: 200px;
  transform-style: preserve-3d;
}

.pizzaBoxCube div {
  background-size: cover;
  background-position: center center;
  opacity: 1;
  position: absolute;
  width: 200px;
  box-shadow: inset 0px 0px 30px 10px rgba(0, 0, 0, 0.5);
}

.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: -20px;
  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%;
}
.extraSpecialIng ul#extraIngredients {
  width: 100%;
  align-items: center;
  justify-content: center;
  border: none;
}
.extraSpecialIng ul#extraIngredients button.nav-link {
  color: var(--darkBlue);
  font-weight: 500;
  font-size: 1rem;
  margin: 0.5rem 0.5rem;
  padding: 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 1px solid var(--darkBlue);
  transition: all linear 0.3s;
}
.extraSpecialIng ul#extraIngredients button.nav-link.active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
/* custom pizza css end  */
.specialIngCarousel {
  margin-bottom: -64px;
}
.specialIngBtnContainer button.btn {
  width: 100%;
  font-size: 0;
  color: var(--darkBlue);
  font-weight: 500;
}

.specialIngBtnContainer button.btn img {
  width: 100%;
}
.specialIngBtnContainer {
  margin-top: 20px;
  transition: all linear 0.3s;
  position: relative;
  padding-bottom: 50px;
  top: -50px;
  transform: scale(1.2);
}

.theta-carousel-inner-container {
  transform: scale(0.6) !important;
  height: 300px !important;
}
.curveSlider {
  margin-top: -89px;
  margin-bottom: -80px;
  position: relative;
}
.curveSlider::before {
  content: "";
  position: absolute;
  background: var(--white);
  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;
}
.simpleProductImage.customProdSimple .productImageContainer {
  margin-top: -71px;
}
.simpleProductImage.customProdSimple .productIngredientBtns:nth-child(3) {
  top: -5px;
  left: 10px;
}
.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 1rem;
  margin: 0;
  overflow: hidden;
}
/* cart page css start */
.cartItemsContainer {
  position: relative;
  width: 100%;
}
.cartItemRow {
  margin: 2rem 0;
  position: relative;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  box-shadow: 0px 0px 6px 6px rgb(0 0 0 / 7%);
  padding: 0.5rem;
}
img.img-fluid.prodCartImg {
  width: calc(100% + 20px);
  max-width: calc(100% + 20px);
  position: relative;
  top: 0px;
}
.cartProdDetail {
  position: relative;
  width: 100%;
}
.cartItemNameAndPrice {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  margin: 0.5rem 0;
}
.cartItemNameAndPrice h2.cartItemName {
  flex: 1;
  margin: 0;
  color: var(--darkBlue);
  font-size: 18px;
  width: 100%;
  font-weight: 600;
}
.cartItemNameAndPrice h3.cartItemPrice {
  color: var(--pink);
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
p.caertItemExtraDetail,
p.cartItemDetail {
  font-size: 1rem;
  color: var(--darkBlue);
  margin: 0;
}
span.DetailBold {
  color: var(--darkBlue);
  font-weight: 600;
}
.cartItemIncDec {
  margin: 0.5rem 0;
}

.quantSelContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
}
.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(--lightGray) !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(--pink) !important;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  width: 15%;
  border-radius: 10px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 5px !important;
}
button.btn.inputSubmittBtn:hover {
  background: var(--darkBlue) !important;
}
.offerOrderAndDiscountArea {
  margin: 0.5rem 1rem;
  width: 100%;
}
.offerOrderAndDiscountArea h2.offerCartHeading {
  color: var(--darkBlue);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}
.discountInfo {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
}
.discountInfo span {
  margin-right: 5px;
  position: relative;
  top: -1px;
}
.discountInfo span svg {
  width: 20px;
}
.discountInfo span svg path {
  fill: var(--darkBlue);
}
.discountInfo p {
  color: var(--darkBlue);
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}
.cartTotal {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 1rem 0;
}
.cartTotal h3.totalMoney {
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--darkBlue);
  font-size: 1.6rem;
}
.cartTotal h3.totalMoney span {
  color: var(--pink);
  margin-left: 1.2rem;
}
.formActionBtn,
.validateOrderContainer {
  width: 100%;
  margin: 0.5rem 0;
  text-align: center;
}
button.btn.validateBtn {
  width: 100%;
  text-align: center;
  margin: 0px auto;
  background: var(--pink) !important;
  color: var(--white);
  padding: 0.8rem 0;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}
.formActionBtn button.btn.validateBtn {
  background: var(--darkBlue) !important;
}
button.btn.validateBtn:hover {
  background: var(--darkBlue) !important;
}
.formActionBtn button.btn.validateBtn:hover {
  background: var(--pink) !important;
}

span.CartIconAndPrice {
  display: flex;
  align-items: center;
  margin-left: 11px;
}

span.CartIconAndPrice span.cartBtnIcon {
  margin-left: 3px;
  position: relative;
  margin-right: 12px;
}

span.CartIconAndPrice span.cartBtnIcon img {
  width: 20px;
}

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;
}
/* cart page css end */
/* user form css start  */
.formPageContainer {
  padding: 4rem 1rem 1rem 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(--darkBlue) !important;
  border: none !important;
  font-size: 16px;
  margin: 0rem 0 1.5rem 0;
}

p.formLblTxt {
  text-align: center;
  color: var(--darkBlue);
  font-size: 1.1rem;
  font-weight: 500;
}
.userFormContainer input.form-control.rounded-pill.customInput::placeholder {
  color: var(--darkBlue) !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(--pink) !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(--pink);
  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;
}
.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(--darkBlue);
  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(--pink);
  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(--darkBlue);
  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(--pink);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.locationTxtDetail p {
  color: var(--darkBlue);
  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(--darkBlue);
}
.shadowBox {
  margin: 2rem 0;
  position: relative;
  width: 100%;
  background: var(--white);
  border: 1px solid var(--white);
  border-radius: 5px;
  box-shadow: 0px 0px 6px 6px rgb(0 0 0 / 7%);
  padding: 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(--white);
  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(--pink);
  border-radius: 50px;
  position: relative;
}
.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(--pink) !important;
  color: var(--white) !important;
  box-shadow: none !important;
}
.popupBtnWithHeading {
  text-align: left;
  padding: 0.5rem;
}
p.popupSimpleText,
h4.popupHeading {
  color: var(--darkBlue);
}
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(--darkBlue);
}
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(--mediumGray);
}
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(--pink);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.deliveryInfo .deliveryIconRound img {
  width: 30px;
}

.LivraisonHead h2 {
  color: var(--darkBlue);
  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(--darkBlue);
  margin-bottom: 1rem;
}

.locationContainer a {
  color: var(--darkBlue);
  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(--darkBlue);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0.5rem 0;
}
.loginPageHeading p {
  margin: 2rem 0 1rem 0;
  color: var(--black);
  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;
}
.formSpecialInstruction {
  text-align: center;
  padding: 0;
  margin: 1rem 0;
}
a.formLink {
  color: var(--black);
}
.formSpecialInstruction p {
  margin: 0 0 0.5rem 0;
  color: var(--black);
  opacity: 0.6;
  line-height: 1.2;
}
.checkBoxNLbl label span.fadedTxt {
  color: var(--black);
  font-weight: 400;
  opacity: 0.6;
}

.formSpecialInstruction h2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--black);
  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(--pink) !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: 50%;
  transform: translateY(-50%);
}
.specialFormHeading {
  margin: 1rem 0;
  text-align: center;
}

.specialFormHeading h1 {
  color: var(--darkBlue);
  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(--pink);
}
p.fadedTxt,
.specialFormHeading p {
  margin: 0;
  opacity: 0.6;
  color: var(--black);
}
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: 300px !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;
  }
}
/* media queries for the case of much small devices end*/

/* new css inside mobie case start  */
@media only screen and (min-width: 450px) {
  .mobileCase {
    position: relative;
    min-height: 100vh;
  }

  .mainWrapper {
    position: relative;
    width: 390px;
    margin: 0px auto;
    overflow: hidden;
    height: 83vh;
    top: 68px;
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .headerWithBackBtn {
    position: absolute;
    width: 100%;
    left: 0;
    box-shadow: none !important;
    top: 0;
  }
  .bottomMenuBar {
    position: relative;
    bottom: 10px;
    box-shadow: none;
  }

  .poductSizes {
    margin-top: 40px !important;
  }
  .mainWrapper.customWrapper .productPageContainer {
    margin-top: 15px;
    padding: 0;
    transform: scale(0.8);
  }
  img.mobileImg {
    width: 440px;
    position: absolute;
    left: 50%;
    height: 95vh;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
  }
  .simpleProductImage {
    margin-top: -20px;
  }
  .mainWrapper.customWrapper .prodPageContent {
    padding: 0;
  }
  .mainWrapper.customWrapper .mainContentContainer.customProdPage {
    min-height: max-content;
  }
  .mainWrapper.customWrapper .bottomMenuBar {
    bottom: 41px;
  }
  
  .pizzaWoodenPlate img {
    width: 77% !important;
  }
  
}

@media only screen and (max-width: 450px) {
  .mobileImg {
    display: none !important;
  }
}

/* new css inside mobie case end  */
