@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: style-script;
    src: url(../fonts/StyleScript-Regular.ttf);
}

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

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

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

:root {
    --white: #ffffff;
    --black: #121618;
    --primaryColor: #cc082f;
    --secondryColor: #FFB005;
    --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: #1604e6;
    --fbColor: #1e4c9a;
    --instaColor: #e8564a;
    --youtubeColor: #ff0000;
    --twitterColor: #1da1f2;
    --skinColor: #f8e6cc;
    --offerGray: #414141;
    --skyBlue: #aee0fa;
    --purple: #ae76e6;
    --seaGreen: #c4f7e0;
    --Green: #179600;
    --lightGreen: #74c5bd;
    --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-color: var(--black);
    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(--white);
    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(--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: 45%;
    /* 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(--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(--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: 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(--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 5rem 1rem;
    margin-top: 95px;
    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 auto;
    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: -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: 1rem 0;
}

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

.offerSubContainer {
    overflow: hidden;
}

.offerBox img {
    width: 100%;
}

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

.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(--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: 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 0.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: flex-end;
    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;
    display: none;
}

.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(--darkBlue);
    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 86px 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);
}

.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: 27px;
    color: var(--white);
    font-weight: 500;
}

.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%;
    /*! background: var(--darkBlue); */
    /*! border: 1px solid var(--white); */
    border-radius: 5px;
    /*! box-shadow: 0px 0px 6px 6px rgb(0 0 0 / 7%); */
    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;
}

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

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

.formActionBtn button.btn.validateBtn:hover {
    background: var(--darkBlue) !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: 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;
}


/* 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);
}

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: #fff;
    /* 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: 319px !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(--navydarkblue);
    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;
}


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

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

/* hero section  */

.hero-section {
    background-image: url(../img/hero-bg.png);
    background-size: cover;
    background-position: center;
    padding: 10px 10px 20px 10px;
    margin: 20px 0;
}

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

.hero-txt-wrapper {
    transform: rotate(-4deg);
}

.hero-txt-wrapper p:first-of-type {
    font-family: culottes;
    color: #fff;
    text-transform: uppercase;
    font-size: 5.625vw;
    line-height: 5.625vw;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    left: 9.375vw;
    bottom: -4.688vw;
    width: fit-content;
}

.hero-txt-wrapper p:first-of-type::before {
    content: "nos";
    color: var(--secondryColor);
    font-family: style-script;
    text-transform: lowercase;
    position: absolute;
    top: -4.688vw;
    left: -3.75vw;
    font-size: 8.125vw;
    transform: rotate(-7deg);
}

.hero-txt-wrapper p:last-of-type {
    font-family: culottes;
    color: #fff;
    text-transform: capitalize;
    font-size: 14.375vw;
    line-height: 14.375vw;
}

.hero-btn-wrapper {
    margin-top: 20px;
    text-align: center;
}

.hero-btn-wrapper button {
    background-color: var(--secondryColor);
    color: var(--primaryColor);
    border: none;
    padding: 5px 20px 10px 20px;
    border-radius: 50px;
    font-family: culottes;
    font-size: 4vw;
    text-transform: capitalize;
    line-height: 4.625vw;
}

.hero-img {
    width: 100%;
}

/* section 2 */

.section2 {
    background-image: url(../img/sec2-bg.png);
    background-size: cover;
    background-position: center;
    padding: 0px 0px 0px 0px;

    /* display: flex;
    align-items: center; */
    /* padding: 45px 70px 40px 70px;  */
}

.sec2-content-wrapper1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 10px 0;
    flex: 1.1;
}

.sec2-txt-wrapper1 {
    /* transform: rotate(-4deg); */
    text-align: center;
}

.sec2-txt-wrapper1 p:first-of-type {
    font-family: culottes;
    color: #fff;
    text-transform: uppercase;
    font-size: 6vw;
    line-height: 5vw;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    width: fit-content;
    margin: 0 auto;
    /* left: 9.375vw;
    bottom: -4.688vw;
    width: fit-content; */
}

.sec2-txt-wrapper1 p:first-of-type::before {
    content: "nos";
    color: var(--secondryColor);
    font-family: style-script;
    text-transform: lowercase;
    position: absolute;
    top: -5vw;
    left: -4.75vw;
    font-size: 7vw;
    transform: rotate(-7deg);
}

.sec2-txt-wrapper1 p:last-of-type {
    font-family: culottes;
    color: var(--secondryColor);
    text-transform: capitalize;
    font-size: 9vw;
    line-height: 9vw;
    margin: 0 0 0px 0;
}


.sec2-txt-wrapper2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-4deg);
    margin-top: 20px;
}

.sec2-txt-wrapper2 p:first-of-type {
    font-family: culottes;
    color: #fff;
    text-transform: uppercase;
    font-size: 6vw;
    line-height: 5vw;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    /* left: 9.375vw;
    bottom: -4.688vw;
    width: fit-content; */
}

.sec2-txt-wrapper2 p:first-of-type::before {
    content: "nos";
    color: var(--secondryColor);
    font-family: style-script;
    text-transform: lowercase;
    position: absolute;
    top: -4.688vw;
    left: -4.45vw;
    font-size: 7vw;
    transform: rotate(-7deg);
}

.sec2-txt-wrapper2 p:last-of-type {
    font-family: culottes;
    color: var(--secondryColor);
    text-transform: uppercase;
    font-size: 9vw;
    line-height: 9vw;
    margin-bottom: 0;
}

.sec2-txt-wrapper2 button {
    background-color: var(--secondryColor);
    color: var(--primaryColor);
    border: none;
    padding: 3px 30px 4px 30px;
    border-radius: 70px;
    font-family: culottes;
    font-size: 6vw;
    text-transform: capitalize;
    line-height: 6vw;
    margin: 10px 0 20px 0;
}

.sec2-prod-wrapper {
    display: flex;
}

.sec2-prod-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sec2-prod-container img {
    width: 80%;
}

.sec2-prod-container p {
    font-family: culottes;
    font-size: 40px;
    line-height: 40px;
    margin: 20px 0 0 0;
    transform: rotate(-4deg);
}

.sec2-btn-wrapper {
    transform: rotate(-4deg);
    margin: 10px 0 20px 0;
}

.sec2-btn-wrapper button {
    background-color: var(--secondryColor);
    color: var(--primaryColor);
    border: none;
    padding: 3px 30px 4px 30px;
    border-radius: 70px;
    font-family: culottes;
    font-size: 6vw;
    text-transform: capitalize;
    line-height: 6vw;
}

.sec2-content-wrapper2 {
    flex: 1;
    text-align: center;
}


.sec2-img3 {
    width: 80%;
}

/* section 3 */

.section3 {
    background-image: url(../img/sec3-bg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0px 10px 0 10px;
}

.sec3-txt-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-4deg);
}

.sec3-txt-wrapper p:first-of-type {
    font-family: culottes;
    color: #fff;
    text-transform: uppercase;
    font-size: 5vw;
    line-height: 5vw;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    width: fit-content;
    left: -5.625vw;

    /* left: 9.375vw;
    bottom: -4.688vw;
    width: fit-content; */
}

.sec3-txt-wrapper p:first-of-type::before {
    content: "nos";
    color: var(--secondryColor);
    font-family: style-script;
    text-transform: lowercase;
    position: absolute;
    top: -2.688vw;
    left: -2.45vw;
    font-size: 5vw;
    transform: rotate(-7deg);
}

.sec3-txt-wrapper p:last-of-type {
    font-family: culottes;
    color: var(--secondryColor);
    text-transform: uppercase;
    font-size: 11vw;
    line-height: 10vw;
    margin-bottom: 10px;
    text-wrap: nowrap;
}

.sec3-img-wrapper {
    text-align: center;
}

.sec3-img-wrapper img {
    width: 90%;
}

.sec3-btn-wrapper button {
    background-color: #fff;
    color: var(--primaryColor);
    border: none;
    padding: 10px 25px 10px 25px;
    border-radius: 70px;
    font-family: culottes;
    font-size: 4vw;
    text-transform: capitalize;
    line-height: 4vw;
    margin-top: 0px;
}

/* section 4 */

.section4 {
    background-image: url(../img/sec4-bg.png);
    background-size: cover;
    background-position: center;
    padding: 20px 0 0px 0;
}

.sec4-txt-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-4deg);
}

.sec4-txt-wrapper p:first-of-type {
    font-family: culottes;
    color: #fff;
    text-transform: uppercase;
    font-size: 5.5vw;
    line-height: 5.5vw;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    bottom: -15px;
    /* width: fit-content;
    left: -5.625vw; */
}

.sec4-txt-wrapper p:first-of-type::before {
    content: "nos";
    color: var(--secondryColor);
    font-family: style-script;
    text-transform: lowercase;
    position: absolute;
    top: -3.688vw;
    left: -3.45vw;
    font-size: 6vw;
    transform: rotate(-7deg);
}

.sec4-txt-wrapper p:last-of-type {
    font-family: culottes;
    color: var(--secondryColor);
    text-transform: capitalize;
    font-size: 12vw;
    line-height: 12vw;
    text-wrap: nowrap;
}

.sec4-slide-content-wrapper {
    display: flex;
    align-items: center;
    background-color: var(--primaryColor);
    margin-top: 70px;
    /* margin-bottom: 60px; */

}

.sec4-slide-txt-wrapper {
    text-align: center;
    margin: 0 auto;
    padding: 10px 0;
}

.sec4-slide-txt-wrapper p {
    font-family: culottes;
    color: #fff;
    text-transform: uppercase;
    font-size: 7.125vw;
    line-height: 6.125vw;
    margin-bottom: 10px;
}

.sec4-slide-txt-wrapper button {
    background-color: var(--secondryColor);
    color: #000;
    border: none;
    padding: 10px 30px 10px 30px;
    border-radius: 70px;
    font-family: culottes;
    font-size: 3.5vw;
    line-height: 2.5vw;
    text-transform: uppercase;
    margin-top: 0px;
}



.sec4-img {
    width: 40%;
    margin-top: -62px;
}

/* .sec4-swiper-wrapper {
    margin-top: -95px;
} */

.sec4-swiper .swiper-pagination-bullet {
    height: 8px;
    width: 55px;
    background-color: #FFFFFF;
    border-radius: 5px;
    opacity: 1;
    transition: 0.3s;
}

.sec4-swiper .swiper-pagination-bullet-active {
    background-color: var(--primaryColor);
}

/* section 5 */

.section5 {
    background-image: url(../img/sec5-bg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 100px 40px 100px 40px;
}

.sec5-txt-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: rotate(-4deg);
    flex: 1;
}

.sec5-txt-wrapper p:first-of-type {
    font-family: culottes;
    color: #fff;
    text-transform: uppercase;
    font-size: 4.5vw;
    line-height: 4.5vw;
    margin-bottom: 0;
    text-align: center;
    position: relative;
    width: fit-content;
    left: -5.625vw;

    /* left: 9.375vw;
    bottom: -4.688vw;
    width: fit-content; */
}

.sec5-txt-wrapper p:first-of-type::before {
    content: "nos";
    color: var(--secondryColor);
    font-family: style-script;
    text-transform: lowercase;
    position: absolute;
    top: -3.3vw;
    left: -2.45vw;
    font-size: 5vw;
    transform: rotate(-7deg);
}

.sec5-txt-wrapper p:last-of-type {
    font-family: culottes;
    color: var(--secondryColor);
    text-transform: uppercase;
    font-size: 11vw;
    line-height: 11vw;
    text-wrap: nowrap;
}

.sec5-img-wrapper {
    text-align: center;
    flex: 1;
}

.sec5-img-wrapper img {
    width: 95%;
}

.sec5-btn-wrapper button {
    background-color: #fff;
    color: var(--primaryColor);
    border: none;
    padding: 10px 55px 13px 55px;
    border-radius: 70px;
    font-family: culottes;
    font-size: 4.5vw;
    text-transform: capitalize;
    line-height: 4.5vw;
    margin-top: 10px;
}

/* app section */

.app-section {
    background-image: url(../img/app-sec-bg.png);
    background-size: cover;
    background-position: top center;
    padding: 30px 50px 20px 50px;
    margin-bottom: 20px;
}

.app-txt-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.app-txt-wrapper p:first-of-type {
    font-family: culottes;
    color: var(--secondryColor);
    text-transform: uppercase;
    font-size: 10vw;
    line-height: 11vw;
    transform: rotate(-5deg);
    margin-bottom: 5px;
}

.app-txt-wrapper p:last-of-type {
    font-family: culottes;
    color: #fff;
    font-size: 5.8vw;
    transform: rotate(-5deg);
    margin-bottom: 0;
}

.download-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 25px 0 0 0;
}

.download-btns img {
    width: 140px;
    border-radius: 10px;
}

/*  */

.quantSelContainer .minus {
    order: 3;
    margin-left: auto;
}

.quantSelContainer input {
    order: 4;
}

.quantSelContainer .plus {
    order: 5;
}

#sideBar .menuItems img {
    width: 23px;
    filter: brightness(0) saturate(100%) invert(10%) sepia(82%) saturate(6926%) hue-rotate(344deg) brightness(91%) contrast(96%);
}

.sec2-swiper .swiper-wrapper,
.sec4-swiper .swiper-wrapper {
    height: auto !important;
}

.x-twitter-icon {
    width: 27px;
    filter: brightness(0) saturate(100%) invert(10%) sepia(82%) saturate(6926%) hue-rotate(344deg) brightness(91%) contrast(96%);
}

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

.pageContent .cartItemsContainer .col-12.mesCommandes {
    background-color: #2b2b2b;
}

.pageContent .cartItemRow .mesPromo h5 {
    color: #fff;
}

.flatpickr-monthDropdown-months {
    color: #000 !important;
}

#ui-datepicker-div {
    display: none !important;
}

.productPageContainer .productExtra {
    margin-top: 0;
}

.productPageContainer .productExtra ul {
    box-shadow: none;
    margin-bottom: 0;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:active,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus,
select:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #121618 inset !important;
    /* Background color */
    color: #fff !important;
    /* Text color */
    -webkit-text-fill-color: #fff !important;
    /* Autofill text color */
}

#Cart form[name="form_produits_cmd"] .quantSelContainer .minus {
    margin-left: 0 !important;
}

/*  */
/*  */
/*  */

.cartItemsContainer.avisPage .classColorPink {
    color: #fff !important;
    text-align: center;
}

.extraSpecialIng .tab-pane.fade {
    display: none;
}

.extraSpecialIng .tab-pane.fade.active.show {
    display: block;
}

#zoneRechargement .customProdPage .prodPageContent {
    padding: 1rem 1rem 1rem 1rem;
}