@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Passion+One:wght@400;700;900&display=swap");

@font-face {
    font-family: gobold;
    src: url(../fonts/Gobold-Regular.otf);
}

@font-face {
    font-family: entog;
    src: url(../fonts/EntogPersonalUse-lgP1y.otf);
}

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

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

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

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

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

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

@keyframes pulse {
    0% {
        transform: translateY(20px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes mymove {
    0% {
        top: 200px;
    }

    50% {
        top: 300px;
    }

    100% {
        top: 300px;
    }
}

:root {
    --whiteColor: #ffffff;
    --blackColor: #000000;
    --greyColor: #121618;
    --primaryColor: #DF0710;
    --secondryColor: #fee300;
}

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

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


/* Track */

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


/* Handle */

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


/* Handle on hover */

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

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

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

html {
    scroll-behavior: smooth;
}

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

.hideOverFlow {
    overflow: hidden !important;
}

ul {
    list-style: none !important;
}

a {
    text-decoration: none !important;
}

.form-control {
    background-color: var(--lightCustomGrey);
    color: #fff !important;
}

input.form-control::placeholder {
    color: var(--darkBlue) !important;
}

.form-control:hover,
.form-control:focus {
    border-color: transparent !important;
    outline: 0 !important;
    background-color: var(--greyColor) !important;
    box-shadow: 0 0 0 0.12rem var(--whiteColor) !important;
    color: #fff !important;
}

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

section {
    display: block;
}

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

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

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

.aciveOverlay {
    position: relative;
    transition: opacity linear 0.3s;
}

.mainWrapper.aciveOverlay::before {
    content: "";
    background: #121618;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.noScroll {
    overflow: hidden !important;
}


/* side bar code start  */

.sideBarContainer {
    background: #121618;
    width: 30%;
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    position: fixed;
    left: 0;
    border: var(--fadewhiteColor);
    padding: 1rem 0.5rem;
    top: 0;
    z-index: 2;
    scrollbar-color: #121618 #121618;
}

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

.sideBarLogo {
    display: flex;
    flex: 1;
}

.sideBarLogo img {
    width: 185px;
}

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

a.closeBtn img {
    width: 95%;
}

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

.logoutButtonContainer button.btn.logOutButton {
    font-size: 1.2rem;
    color: var(--bs-gray-600);
}

.logoutButtonContainer button.btn.logOutButton:hover {
    color: var(--primaryColor);
}

button.btn.logOutButton span img {
    width: 25px;
}

ul.subMenu {
    position: relative;
    padding-left: 1rem;
}

ul.menuItems {
    padding-left: 0.5rem;
}

ul.menuItems li {
    margin-bottom: 1rem;
}

ul.menuItems li a {
    /* color: var(--darkBlue); */
    font-size: 1.2rem;
    cursor: pointer;
    color: #fff;
}

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

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

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

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

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

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

.mobileCommandBtn {
    text-align: center;
}

.mobileCommandBtn ul {
    padding: 0 !important;
    margin: 1rem auto !important;
    display: none;
}

.mobileCommandBtn ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0.5rem auto;
    background: var(--primaryColor);
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    color: var(--whiteColor);
    border-radius: 50px;
    transition: all linear 0.3s;
}

.mobileCommandBtn ul a:hover {
    background: var(--darkBlue);
}


/* side bar code end  */


/* header code start  */

.headerContainer {
    position: relative;
    z-index: 55555;
}

.mainNav {
    background: #2f3132;
    padding: 1rem 0;
    display: block;
    box-shadow: 0px 0px 55px 23px rgba(0, 0, 0, 0.45);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
}

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

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

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

.brandContainer {
    flex: 1;
}

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

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

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

.centerNavLink ul li {
    position: relative;
}

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

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

a.navTel {
    position: relative;
}

a.navTel img {
    width: 40px;
    transform: rotate(-15deg);
    position: relative;
    left: -20px;
}

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

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

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

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

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

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

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

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

img.logoImg {
    width: 200px;
}

a.userIcon svg {
    width: 26px;
}

a.userIcon2 svg {
    width: 26px;
}

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

.hamBurgerIcon {
    position: relative;
}

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

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

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

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

nav.mainNav button:hover svg path,
nav.mainNav a:hover svg path {
    fill: var(--primaryColor) !important;
}


/* cart drawer css code start  */

.cartDrawerContainer {
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    width: 660px;
    background: #fff;
    overflow: hidden;
    border-radius: 20px;
    border: #0000006e 1px groove;
    position: fixed;
    top: 41px;
    right: 28px;
    transition: all linear 0.3s;
    z-index: 55;
    transform: translateY(-150%);
}

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

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

.cartTitleAndCloseBtn h3 {
    margin: 0;
    color: var(--whiteColor);
    display: flex;
    flex: 1;
}


/* catrt drawer code end  */


/* sticky tranparent header code start  */

nav.mainNav.stickyHeader {
    background: transparent;
    box-shadow: none !important;
}

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

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

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

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

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

nav.mainNav.stickyHeader .centerNavLink ul li a,
nav.mainNav.stickyHeader a.navTel {
    font-size: 0;
}

nav.mainNav.stickyHeader .centerNavLink ul li:first-child::before {
    opacity: 0;
}

nav.mainNav.stickyHeader a.navTel img {
    width: 0 !important;
}

span.stickyHeaderLogo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 55;
}

span.stickyHeaderLogo.hideStickyLogo {
    opacity: 0;
}


/* sticky transparent code end  */


/* header code end  */


/* cart page code start  */

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

.cartItemRow {
    margin: 1.5rem 0;
    position: relative;
    width: 100%;
    background: var(--greyColor);
    border: 1px solid var(--greyColor);
    border-radius: 5px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    padding: 0.5rem;
}

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

img.img-fluid.prodCartImg {
    width: calc(100% + 20px);
    max-width: calc(100% + 20px);
    position: relative;
    top: 0px;
}

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

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

.cartItemNameAndPrice h2.cartItemName {
    flex: 1;
    margin: 0;
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 25px;
    width: 100%;
}

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

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

.cartItemDetail {
    font-size: 10px;
}

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

.cartItemIncDec {
    margin: 0.5rem 0;
}

.quantSelContainer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    overflow: hidden;
    position: relative;
    right: -35px;
    z-index: 1;
}

.quantSelContainer input {
    width: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    margin: 0;
    background: transparent !important;
    border: none !important;
    font-size: 15px !important;
    color: var(--whiteColor);
}

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

.quantSelContainer span {
    cursor: pointer;
}

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

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

.yourChoiceContainer,
.promoCodeContainer {
    width: 100%;
    background-color: var(--greyColor);
    margin: 1rem 0;
}

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

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

.input-groupp {
    position: relative;
    display: flex;
    /* background: blue; */
    flex-wrap: wrap;
    /* border: 1px solid blackColor; */
    align-items: stretch;
    margin: 10px 0px;
    padding: 10px;
    border-radius: 6px;
    width: 100%;
}

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

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

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

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

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

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

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

.discountInfo span svg {
    width: 20px;
}

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

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

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

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

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

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

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

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

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

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

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

span.CartIconAndPrice {
    display: flex;
    align-items: center;
    margin-left: 11px;
}

span.CartIconAndPrice span.cartBtnIcon {
    margin-left: 3px;
    position: relative;
    margin-right: 12px;
}

span.CartIconAndPrice span.cartBtnIcon img {
    width: 35px;
    filter: invert(100%);
}

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

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

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

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

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

span.priceBold {
    font-size: 19px;
}


/* cart page css end */


/* hero area code start  */

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

.sliderContainer {
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

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

.slideImg {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slideImg img {
    width: 100%;
    object-fit: cover;
    height: 100vh;
    object-position: center;
}

.slideImg::before {
    content: "";
    background: var(--blackColor);
    height: 98%;
    width: 98%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.6;
}

.slideTextContainer {
    position: absolute;
    top: 50%;
    width: 60%;
    left: 3%;
    transform: translateY(-50%);
    z-index: 3;
}

.slideTextContainer h1 {
    font-family: "Passion One", cursive;
    font-size: 15vh;
    line-height: 16.3vh;
    opacity: 0;
    transform: translate(0px, 0px) rotate(0deg) skewX(-6deg);
    color: var(--whiteColor);
    transition: all linear 1 s;
}

.slideTextContainer h1 span {
    font-size: 20vh;
    color: var(--primaryColor);
}

.slideTextContainer h1 span.outlineLetter {
    color: transparent;
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: var(--whiteColor);
}

.centerTxtElement {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    opacity: 0;
    transition: all linear 0.8s;
}

.centerTxtElement span {
    font-size: 145vh;
    color: transparent;
    -webkit-text-stroke-width: 5px;
    -webkit-text-stroke-color: var(--primaryColor);
    transition: all linear 0.3s;
}

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

.heroMenuBtnContainer {
    position: relative;
    z-index: 7;
    display: flex;
    margin-left: 70px;
}

.heroMenuBtnContainer a {
    color: var(--whiteColor);
    font-family: "Passion One", cursive;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    padding: 1rem 10rem 1rem 1.5rem;
    width: max-content;
    border: 10px solid var(--fadewhiteColor);
    position: relative;
    border-radius: 50px;
}

.heroMenuBtnContainer a span svg {
    width: 55px;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.heroMenuBtnContainer a span svg path.st0 {
    fill: var(--whiteColor);
}

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

.heroSocialsIcons {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: var(--fadeblackColor);
    border-radius: 10px 0 0 10px;
    padding: 1rem;
    z-index: 10;
}

.heroSocialsIcons ul {
    padding: 0 !important;
    margin: 0 !important;
    text-align: center;
}

.heroSocialsIcons ul a {
    color: var(--primaryColor);
    transition: all linear 0.3s;
    font-size: 1.5rem;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.owl-item.active .centerTxtElement {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.owl-item.active .slideTextContainer h1 {
    opacity: 1;
    animation: skewAnim 2s;
}

@keyframes skewAnim {
    0% {
        transform: skewX(10deg);
    }

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

    100% {
        transform: skewX(-6deg);
    }
}

.sliderBtnNProgressContainer {
    position: absolute;
    bottom: 10%;
    z-index: 555;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px auto;
    width: 80%;
    right: 45px;
}

.sliderProgressContainer {
    width: 100%;
    height: max-content;
    flex: 1;
    display: flex;
}

.sliderProgressContainer .prgoressBar {
    width: 100%;
    background: var(--fadewhiteColor);
    height: 8px;
    margin: 0px auto;
    position: relative;
    overflow: hidden;
    border-radius: 50px;
}

.sliderProgressContainer .prgoressBar::before {
    content: "";
    background: var(--whiteColor);
    width: 0;
    height: 100%;
    position: absolute;
    opacity: 1;
    left: 0;
    top: 0;
    animation: progress 15s infinite;
}

@keyframes progress {
    0% {
        width: 0;
    }

    50% {
        width: 50%;
    }

    100% {
        width: 100%;
    }
}

button.mvToBtm {
    width: 40px;
    height: 60px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    border: 3px solid var(--whiteColor);
    border-radius: 50px;
    z-index: 6;
    background: none !important;
    box-shadow: none !important;
    transition: all linear 0.3s;
    overflow: hidden;
    transform: translateX(-50%);
}

button.mvToBtm span {
    width: 10px;
    height: 10px;
    background: var(--whiteColor);
    border-radius: 100%;
    position: absolute;
    top: 25%;
    left: calc(50% - 5px);
    animation: 2s infinite bounce;
}


/* hero area code end  */


/* home page categories start  */

.mainCategories {
    position: relative;
    margin-top: 93px !important;
    text-align: center;
}


/*index.html page class*/

.mainCategoriess {
    /*! position: relative; */
    /*! margin-top: -200px !important; */
    text-align: center;
}

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

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


/*index.html page class*/

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

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

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

.categoryBox {
    width: 100%;
    /*! background: var(--whiteColor); */
    /*! box-shadow: 0px 0px 3px 4px rgb(155 155 155 / 16%); */
    margin: 1rem 0;
    transform: scale(0.9);
    top: 0;
    position: relative;
    transition: all linear 0.3s;
}

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

.catProdImg {
    width: 95%;
    margin: 1rem auto;
    transform: rotate(0deg);
    transition: all linear 0.3s;
}

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

h3.catTitle {
    font-size: 1.6rem;
    color: var(--darkBlue);
    margin-top: 2rem;
}

.categoryBox:hover {
    top: -20px;
    transform: scale(1);
    /*! box-shadow: 0px 0px 3px 4px rgb(155 155 155 / 20%); */
}


/* home page categories end  */


/* footer code start */

footer.footer {
    display: block;
    width: 100%;
}

.footerDetailArea {
    background: #202020;
    background-size: cover;
    padding: 5rem 0;
    /*! border-top: 2px solid var(--secondryColor); */
}

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

.storeIcons a {
    margin: 0 0.5rem;
}

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

.ftTxtContainer h2 {
    font-size: 1.8rem;
    color: var(--primaryColor);
    margin-bottom: 20px;
    font-family: bebas;
    font-size: 2.7vw !important;
    text-align: center;
}

.ftTxtContainer p {
    font-size: 1.2rem;
    text-align: center;
    color: var(--whiteColor);
    font-weight: 500;
    font-family: gobold;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 37px;
}

.ftBotttomRow {
    background: var(--blackColor);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 1.5rem 0;
}

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

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

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

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

ul.ft-socials {
    display: flex;
    margin: 0 !important;
    padding: 0 !important;
    justify-content: center;
}

ul.ft-socials img {
    width: 50px;
}

ul.ft-socials a {
    transition: all linear 0.3s;
    margin: 0 0.5rem;
    position: relative;
    top: 0;
}

ul.ft-socials a:hover {
    top: -5px;
}

.leftBtmRowItm {
    display: flex;
    flex: 1;
    justify-content: flex-start;
}

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

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

.rightBtmRowItm {
    display: flex;
    flex: 1;
    justify-content: flex-end;
}


/* footer code end  */


/* link pages code start  */

.linkPageContainer {
    position: relative;
    padding: 6.6rem 0;
    min-height: 100vh;
}

.modelInerBox {
    margin: 3rem 0;
}

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

h2.modelHeading {
    font-size: 2rem;
    text-transform: uppercase;
    color: var(--primaryColor);
}

.modelBtnsContainer ul {
    display: flex;
    padding: 0 !important;
    align-items: center;
}

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

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

.menuListeBtns .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menuListeBtns .owl-dots button.owl-dot span {
    width: 35px;
    height: 5px;
    padding: 0 !important;
    margin: 0 !important;
    border-radius: 0;
    background: var(--whiteColor);
}

.menuListeBtns .owl-dots button.owl-dot span:hover,
.menuListeBtns .owl-dots button.owl-dot.active span {
    background: var(--primaryColor);
}

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

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

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

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

.prodImageShadeBox {
    padding: 0.5rem 1rem;
    background: var(--whiteColor);
    font-size: 1.2rem;
    margin: 1rem 0;
    box-shadow: 0px 0px 8px 1px rgb(0 0 0 / 18%);
    border-radius: 10px;
    transition: all linear 0.3s;
    text-align: center;
}

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

.prodImageShadeBox .prodShadeContainer img {
    width: 100%;
    margin: 0px auto;
}

.prodImageShadeBox h4 {
    font-size: 1.2rem;
    margin: 0.5rem auto;
    color: var(--blackColor);
}

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

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

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

.prodImageShadeBox.d-flex.align-items-center .prodShadeContainer {
    width: 60px;
}


/* link pages code end  */


/*popup main code start */

.popupForDelAndPic {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--fadeblackColor);
    z-index: 555;
    top: 0;
    left: 0;
    overflow: hidden;
}

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

.popupForDelAndPic .popupItemsContainer .innerPopupBox {
    width: 65%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: var(--whiteColor);
    padding: 2rem;
    border-radius: 20px;
}

.popupForDelAndPic .popupItemsContainer .innerPopupBoxx {
    width: 28%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    background: var(--greyColor);
    padding: 1rem 1rem 0.9rem 1rem;
    border-radius: 20px;
}

.takeAwayContainer .popupHeadingIcon,
.deliverySelector .popupHeadingIcon {
    display: flex;
    width: 100%;
    align-items: center;
    padding: 1rem;
    border-radius: 10px 10px 0 0px;
}

.takeAwayContainer .popupHeadingIcon {
    background: var(--primaryColor);
}

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

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

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

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

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

.innerPopupBox select.form-control {
    box-shadow: none !important;
    background: var(--bs-gray-300) !important;
    cursor: pointer !important;
    outline: none !important;
    border: none !important;
    /*! padding: 1rem !important; */
    border-radius: 0 0 10px 10px !important;
    color: var(--blackColor) !important;
    font-size: 1rem !important;
}

.optionsContainer::before {
    content: "" !important;
    height: 0px !important;
    width: 0px !important;
    position: absolute !important;
    top: 30% !important;
    right: 10px !important;
    transform: translateY(-50%) !important;
    z-index: 5 !important;
    border: none !important;
    border-top: 7px solid var(--darkBlue) !important;
    border-left: 7px solid transparent !important;
    border-right: 7px solid transparent !important;
}


/* popup main code end  */


/* product page code start  */

.adressAndDeliveryBtns {
    margin: 1rem 0;
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

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

.adressAndDeliveryBtns h2.nomralDetail {
    color: var(--whiteColor);
    font-size: 1.2rem;
    margin: 0;
}

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

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

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

.deliveryDetailBox {
    background: var(--whiteColor);
    border-radius: 0 10px 10px 0;
}

a.changeDetailPencil {
    position: absolute;
    right: 15px;
    bottom: 15px;
    z-index: 5;
}

a.changeDetailPencil img {
    width: 20px;
}

.menuListeBtns .modelBtnsContainer ul {
    justify-content: flex-start;
}

.menuListeBtns .modelInerBox {
    margin: 0 !important;
    overflow: hidden;
}


/*product boxes on product page code start */

.prodShadowBox {
    position: relative;
    transition: all linear 0.3s;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    /*! background: var\(--graydark; */
    padding: 1rem;
    border-radius: 0px;
    text-align: center;
    margin: 1rem 0;
    top: 0;
    transition: all linear 0.3s;
    border: 1px solid var(--bs-gray-500);
}

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

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

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

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

p.prodDetail {
    color: var(--whiteColor);
    font-size: 0.9rem;
    overflow-wrap: break-word;
}

.poductExtra,
.cutsomProdSizes,
.poductSizesSimple {
    margin: 1.5rem -12px;
    width: 111%;
    /* max-width: 100%; */
    display: flex;
    /* padding: 0 1rem; */
    align-items: center;
    justify-content: center;
}

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

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

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

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

.prodPriceAndAddBtn .prodPrice {
    flex: 1;
    display: flex;
    width: 100%;
    color: var(--whiteColor);
    font-size: 1.2rem;
    margin: 0;
    align-items: center;
}

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

span.AddIcon svg {
    width: 25px;
}

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

.prodTypeBtns a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 14px 0 0px;
    color: var(--darkBlue);
    font-size: 1.1vw;
    position: relative;
    font-family: poppins;
}

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

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

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

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

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

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

.zeroOpacity {
    pointer-events: none;
    opacity: 0;
}

.offerAdsMainContainer .owl-carousel.off {
    display: block;
}


/*product boxes on product page code start */


/* custom prod page code start  */

.customProductContainer {
    position: relative;
    margin: 1rem 0;
    padding: 0;
}

.customProdBox {
    text-align: center;
}

.customProdBox h2.productName {
    color: var(--secondryColor);
    font-size: 2.2rem;
    text-transform: uppercase;
    margin: 1.5rem 0;
}

.prodImagWithIngContainer {
    text-align: center;
    margin: 2rem 0;
    padding: 0 0.5rem;
}

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

.productImageContainer img.img-fluid {
    width: 100%;
}

.prodQunatitChanger {
    margin: 1rem 0;
}

div.prodSideIng {
    padding: 0;
    margin: 2rem 0 0 0 !important;
}

div.prodSideIng li {
    display: inline-table;
}

div.prodSideIng button.btn {
    margin: 0;
    position: relative;
}

div.prodSideIng button.btn img {
    width: 100%;
}

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

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


/* Chrome, Safari, Edge, Opera */

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


/* Firefox */

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

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

.customProdDetail {
    margin: 3.5rem 0 2rem 0;
    padding: 0 0.5rem;
}

h2.productExtraIngHeading,
h2.descriptionTitle {
    color: var(--secondryColor);
    font-size: 1.2rem;
    text-transform: uppercase;
    margin: 1.5rem 0 0 0;
}

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

p.prodDescription {
    color: var(--whiteColor);
    font-size: 1.2rem;
    margin: 1rem 0;
}

.extraSpecialIng ul#extraIngredients {
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    border: none;
    position: relative;
    z-index: 5;
}

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

.extraSpecialIng ul#extraIngredients button.nav-linkk {
    color: var(--blackColor);
    font-size: 1rem;
    margin: 0.5rem 0.5rem;
    padding: 10px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid var(--whiteColor);
    transition: all linear 0.3s;
}

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

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

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

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

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

ul.extraList button.btn.extraIngBtn {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0.5rem 0;
    font-size: 1.2rem;
    color: var(--whiteColor);
    cursor: pointer;
    position: relative;
}

ul.extraList button.btn.extraIngBtn img {
    width: 85px;
    margin: 0 0.5rem 0 1rem;
}

ul.extraList button.btn.extraIngBtn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    /*! background: var(--whiteColor); */
    width: 30px;
    border: 4px solid var(--primaryColor);
    height: 30px;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    opacity: 1;
    transition: all linear 0.3s;
}

ul.extraList button.btn.extraIngBtn.fadeDisabled,
ul.extraList button.btn.extraIngBtn:hover {
    color: var(--primaryColor);
}

ul.extraList button.btn.extraIngBtn.fadeDisabled::before,
ul.extraList button.btn.extraIngBtn:hover::before {
    border: 4px solid var(--whiteColor);
}

ul.extraList button.btn.extraIngBtn span.removIcon {
    position: absolute !important;
    left: -34px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
}

ul.extraList button.btn.extraIngBtn span.removIcon img {
    width: 15px !important;
}

.ingrCheckBoxes {
    display: none !important;
}

img.ingPack {
    opacity: 0;
    z-index: -1;
    width: 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(6);
    transition: all linear 0.8s;
}

.activeIngredient {
    opacity: 1 !important;
    transform: translate(-50%, -50%) scale(1) !important;
    z-index: 2 !important;
}

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

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

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

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

span.removIcon img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
}

span.removIcon1 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
}

span.removIcon2 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
}

span.removIcon3 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
}


/*Custom cart 1*/

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

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

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

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

span.remIcon img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
}

span.remIcon1 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
}

.remIcon2 img {
    display: none;
}

span.remIcon3 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
}

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

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

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

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

.addIcon img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
    left: 11px;
}

.addIcon1 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
    left: 11px;
}

.addIcon2 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
    left: 11px;
}

.addIcon3 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
    left: 11px;
}

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

.fadeDisabled span.removIcon1 img {
    opacity: 1 !important;
    display: block;
}

.fadeDisabled span.removIcon2 img {
    opacity: 1 !important;
    display: block;
}

.fadeDisabled span.removIcon3 img {
    opacity: 1 !important;
    display: block;
}

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

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

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

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

.addPlusIcon img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
    left: 11px;
}

.addPlusIcon1 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
    left: 11px;
}

.addPlusIcon2 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
    left: 11px;
}

.addPlusIcon3 img {
    width: 30px !important;
    margin: 0px auto;
    opacity: 0;
    display: none;
    position: relative;
    left: 11px;
}

.fadeDisabled span.remIcon img {
    opacity: 1 !important;
    display: block;
}

.fadeDisabled span.remIcon1 img {
    opacity: 1 !important;
    display: block;
}

.fadeDisabled .remIcon2 {
    display: block;
}

.fadeDisabled span.remIcon3 img {
    opacity: 1 !important;
    display: block;
}

.fadeDis button.CustomExtraButton {
    border: 1px solid var(--youtubeColor) !important;
}

.fadeDis button.CustomExtraButton {
    border: 1px solid var(--youtubeColor) !important;
}

.fadeDis button.CustomExtraButton {
    border: 1px solid var(--youtubeColor) !important;
}

.fadeDis button.CustomExtraButton {
    border: 1px solid var(--youtubeColor) !important;
}

.fadeDisabledPlus img.addIcon {
    opacity: 1 !important;
    display: none;
}

.fadeDisabledPlus img.addIcon1 {
    opacity: 1 !important;
    display: none;
}

.fadeDisabledPlus img.addIcon2 {
    opacity: 1 !important;
    display: none;
}

.fadeDisabledPlus img.addIcon3 {
    opacity: 1 !important;
    display: none;
}

.fadeDisabledPlus img.addPlusIcon {
    opacity: 1 !important;
    display: none;
}

.fadeDisabledPlus img.addPlusIcon1 {
    opacity: 1 !important;
    display: none;
}

.fadeDisabledPlus img.addPlusIcon2 {
    opacity: 1 !important;
    display: none;
}

.fadeDisabledPlus img.addPlusIcon3 {
    opacity: 1 !important;
    display: none;
}


/* ingredient animation code end  */


/*check box for ing  code end*/

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

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

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

.customAddCartContainer {
    position: relative;
    overflow: hidden;
    margin: 1rem 0;
}

button.btn.addToCartCustom {
    transition: all linear 0.3s;
    min-width: 100%;
    display: flex;
    align-items: center;
    background: var(--primaryColor) !important;
    color: var(--whiteColor) !important;
    text-transform: uppercase;
    font-size: 1.5rem;
    /*! margin-left: 176px; */
    padding: 0.5rem 1rem;
    overflow: hidden;
    border-radius: 10px;
}

button.btn.addToCartCustomm {
    transition: all linear 0.3s;
    min-width: 100%;
    display: flex;
    align-items: center;
    background-color: var(--primaryColor) !important;
    color: var(--whiteColor) !important;
    text-transform: uppercase;
    font-size: 1.5rem;
    /*! margin-left: 166px; */
    padding: 0.5rem 1rem;
    overflow: hidden;
    border: var(--primaryColor) 1px solid !important;
    border-radius: 10px;
}

button.btn.addToCartCustom span.btnTxt {
    display: flex;
    flex: 1;
    justify-content: flex-start;
}

button.btn.addToCartCustom span.btnIcon {
    position: relative;
    left: 0;
    transition: all linear 0.3s;
}

button.btn.addToCartCustom span.btnIcon svg {
    width: 45px;
}

button.btn.addToCartCustom:hover {
    background: var(--bs-gray-800) !important;
}

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

button.btn.addToCartCustomm span.btnTxt {
    display: flex;
    flex: 1;
    justify-content: flex-start;
}

button.btn.addToCartCustomm span.btnIcon {
    position: relative;
    left: 0;
    transition: all linear 0.3s;
}

button.btn.addToCartCustomm span.btnIcon svg {
    width: 45px;
}

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

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


/* custom prod page code end  */


/*pizzaBox css start */

.animatedPizzaBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 0;
    width: 100%;
    transition: all linear 0.5s;
}

.pizzaBoxContainer {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 0;
    perspective: 1100px;
    perspective-origin: 50% -414px;
}

.pizzaBoxCube {
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    height: 200px;
    transform-style: preserve-3d;
}

.pizzaBoxCube div {
    background-size: cover;
    background-position: center center;
    opacity: 1;
    position: absolute;
    width: 200px;
    box-shadow: inset 0px 0px 30px 10px rgba(0, 0, 0, 0.5);
}

.BurgerBoxCube {
    margin-bottom: 100px;
    position: relative;
    width: 100%;
    height: 200px;
    transform-style: preserve-3d;
}

.BurgerBoxCube div {
    background-size: cover;
    background-position: center center;
    opacity: 1;
    position: absolute;
    width: 200px;
    box-shadow: inset 0px 0px 30px 10px rgba(0, 0, 0, 0.5);
}

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

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

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

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

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

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

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

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

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

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

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

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

.readForPackingBox {
    transition: all linear 2s;
}

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

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

.productInnerContainer {
    position: relative;
}

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

.productInnerContainer img {
    width: 100%;
}

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


/*pizzaBox css end*/


/* product page code end  */


/* cart page css code start  */

h2.cartPageHeading {
    margin: 2rem auto;
    text-align: center;
    color: var(--primaryColor);
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

@media only screen and (min-width: 991px) {
    .cartPageContainer img.img-fluid.prodCartImg {
        width: 100%;
    }

    .cartPageContainer button.btn.validateBtn span.CartIconAndPrice span.cartBtnIcon img {
        width: 45px;
    }

    .cartPageContainer span.TotalCartItemsAndPrice {
        font-size: 18px;
        margin-left: 6px;
    }

    .cartPageContainer span.cartBtnTxt {
        font-size: 18px;
        text-transform: uppercase;
        display: flex;
        justify-content: flex-end;
        margin-right: 20px;
    }

    .cartPageContainer .cartItemNameAndPrice h3.cartItemPrice {
        font-size: 25px;
    }
}


/* cart page css code end  */


/* login signup page code start  */

.formMainContainer {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
}

.comDetailPrice {
    font-size: 17px;
}

.formShadowContainer {
    border-radius: 20px;
    padding: 2rem;
    /* position: absolute; */
    color: var(--whiteColor);
    /* width: max-content; */
    font-size: 10px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    margin: 2.1rem auto;
}

span#select2-js3m-container {
    display: none !important;
}

span#select2-afrq-container {
    display: none !important;
}

.formShadowContainerFix {
    border-radius: 20px;
    padding: 2rem 0.5rem 2rem 2rem;
    /* position: absolute; */
    color: var(--whiteColor) !important;
    /*! width: 50%; */
    font-size: 10px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    margin: 2.1rem auto;
}

.formShadowContainerr {
    border-radius: 20px;
    padding: 2rem 0rem 2rem 1rem;
    color: var(--darkblue) !important;
    color: var(--darkblue) !important;
    /* width: max-content; */
    font-size: 10px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    width: 90%;
    font-size: 7px;
    margin: 2.1rem 0rem 2.1rem 4.2rem;
}

.CustomTextView {
    transform: translate(-70px, 10px);
    width: 70%;
    float: inline-end;
}

.formShadowContainer .userFormContainer {
    width: 50%;
    text-align: center;
    color: var(--whiteColor);
    margin: 0.5rem auto;
}

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

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

.inputWithIcon {
    position: relative;
}

span.inputBoxIcon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}

span.inputBoxIcon img.lengthIcon {
    width: 20px;
}

span.inputBoxIcon img.wideIcon {
    width: 25px;
}

.userFormContainer input.form-control.rounded-pill.customInput {
    padding: 1rem;
    background: transparent;
    color: var(--darkBlue) !important;
    border: 1px solid #333 important;
    font-size: 16px;
    margin: 0rem 0 1.5rem 0;
}

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

.formActionBtn button.btn.validateBtn {
    background: var(--primaryColor) !important;
    width: 62%;
    height: 50px;
    text-transform: uppercase;
    color: var(--whiteColor);
    margin: 1rem auto;
    transition: all linear 0.5s;
}

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

p.formSubTxt {
    color: var(--whiteColor);
    text-align: center;
    margin-top: -9px;
    margin-bottom: 16px;
    opacity: 0.8;
}


/* date picker css start  */

.timePicekerWrapper,
.datePickerWrapper {
    position: relative;
}

#datepicker {
    position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* date picker css end  */


/* form check box and radio css code start  */

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

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

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

.checkBoxNLbl input[type="checkbox"]::before,
.radioBoxNLbl input[type="radio"]::before {
    content: "";
    width: 20px;
    height: 20px;
    background: var(--whiteColor);
    position: absolute;
    top: -5px;
    left: -2px;
    box-shadow: 0px 0px 3px 4px rgb(151 151 151 / 25%);
    z-index: 5;
}

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

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

.checkBoxNLbl input[type="checkbox"]::after,
.radioBoxNLbl input[type="radio"]::after {
    content: "";
    background: var(--primaryColor) !important;
    position: absolute;
    top: -1px;
    width: 12px;
    height: 12px;
    left: 2px;
    z-index: 5;
    transform: scale(0);
    transition: all linear 0.3s;
}

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

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

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

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


/* form check box and radio css code end  */


/* login signup Page code end  */


/* media queies code start  */

@media only screen and (max-width: 1410px) {
    .prodImageShadeBox h4 {
        font-size: 1rem;
    }

    .poductExtra ul li a,
    .poductSizesSimple ul li a {
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 1300px) {
    .cartPageContainer img.img-fluid.prodCartImg {
        width: 100%;
    }

    .slideTextContainer h1 br {
        display: none;
    }

    .slideTextContainer h1 {
        font-size: 6rem;
    }
}

@media only screen and (max-width: 1100px) {
    img.logoImg {
        width: 180px;
    }

    nav.mainNav a {
        font-size: 1rem;
    }
}

@media only screen and (max-width: 991px) {
    .formShadowContainer {
        padding: 1rem;
        color: var(--navydarkblue);
        margin: 1rem 0;
    }

    .nav-pills .nav-item {
        width: 100%;
        margin: 5px;
    }

    .formShadowContainer .userFormContainer {
        width: 95%;
    }

    h2.cartPageHeading {
        margin: 1rem auto;
    }

    ul.prodSideIng {
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
    }

    .linkPageContainer .customProductContainer {
        margin-top: -50px;
        margin-bottom: -50px;
    }

    .poductExtra,
    .poductSizesSimple {
        margin: 0.5rem auto;
    }

    .customProdDetail {
        margin: -50px 0 0 0;
        text-align: center;
        overflow: hidden;
    }

    p.prodDescription {
        font-size: 1rem;
        margin: 0;
    }

    .customProdDetail h2.descriptionTitle {
        margin-top: 10px;
    }

    h2.productExtraIngHeading,
    h2.descriptionTitle {
        margin-top: 10px;
        font-size: 1.5rem;
    }

    ul.extraList button.extraIngBtn img {
        width: 60px;
    }

    ul.extraList button.extraIngBtn {
        font-size: 1rem;
    }

    button.btn.addToCartCustom span.btnTxt,
    h2.prodPrice {
        font-size: 1.5rem;
    }

    button.btn.addToCartCustom span.btnIcon svg {
        width: 30px;
    }

    button.btn.addToCartCustom {
        justify-content: center;
        width: 100%;
    }

    .extraSpecialIng ul#extraIngredients {
        justify-content: center;
    }

    .sideBarContainer {
        width: 80%;
    }

    .centerNavLink {
        display: none;
    }

    img.logoImg {
        width: 150px;
    }

    a.navTel {
        font-size: 0 !important;
    }

    ul.navSideIcons {
        margin: 0 !important;
    }

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

    a.userIcon svg {
        width: 20px;
    }

    a.userIcon2 svg {
        width: 20px;
    }

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

    button.btn.cartBtn span.cartCounterIcon {
        top: -16px;
        left: 8px;
    }

    button.btn.cartBtn span.cartCounterIcon span.cartCounter {
        font-size: 12px;
        top: calc(45% - 0px);
    }

    .hamBurgerIcon button#menuBtn span {
        width: 25px;
        height: 4px;
    }

    .hamBurgerIcon button#menuBtn span:nth-child(2) {
        width: 30px;
    }

    .mobileCommandBtn ul {
        display: block;
    }

    .cartDrawerContainer {
        width: 60%;
        top: 80px;
    }

    .cartDrawerContainer.activeDrawer {
        transform: translateY(0%);
    }

    .drawerInnerContainer {
        height: 65vh;
    }

    .footerDetailArea {
        text-align: center;
    }

    .footerDetailArea .storeIcons {
        justify-content: center;
    }

    .footerDetailArea,
    .mainCategories {
        padding: 2rem 0;
    }

    .footerDetailArea,
    .mainCategoriess {
        padding: 2rem 0;
    }

    .categoryBox {
        transform: scale(1);
    }

    .mainCategories .row.mt-5.mb-5 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .mainCategoriess .row.mt-5.mb-5 {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    h2.secSubTitlte {
        font-size: 1.5rem;
    }

    .ftTxtContainer h2,
    h1.secTitlte {
        font-size: 1.8rem;
    }

    .modelBtnsContainer ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .prodImageShadeBox.d-flex.align-items-center .prodShadeContainer {
        width: 60%;
    }

    .adressAndDeliveryBtns {
        padding: 0rem 0.5rem;
    }

    .deliveryDetailBox,
    .takeAwayDetailBox {
        border-radius: 10px;
        margin: 0.5rem 0;
    }

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

    .modelBtnsContainer {
        overflow: hidden !important;
    }

    .menuListeBtns .modelBtnsContainer ul {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-y: hidden;
        overflow-x: scroll;
        padding: 0 5px !important;
        margin: 0 !important;
    }

    .modelBtnsContainer ul a {
        min-width: max-content;
    }

    /* width */
    .modelBtnsContainer ul::-webkit-scrollbar {
        width: 0px !important;
    }

    /* Track */
    .modelBtnsContainer ul::-webkit-scrollbar-track {
        background: var(--whiteColor);
    }

    /* Handle */
    .modelBtnsContainer ul::-webkit-scrollbar-thumb {
        background: transparent;
    }

    /* Handle on hover */
    .modelBtnsContainer ul::-webkit-scrollbar-thumb:hover {
        background: transparent;
    }

    .bottomRowItemsList {
        flex-direction: column;
    }

    ul.ft-socials,
    .rightBtmRowItm,
    .leftBtmRowItm {
        justify-content: center;
        margin: 0.5rem auto;
        width: 100%;
    }

    .ftBotttomRow {
        padding: 0.5rem 0;
    }

    .linkPageContainer {
        padding: 5rem 0 3rem 0;
    }

    .slideTextContainer {
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .slideTextContainer h1 {
        text-align: center;
        font-size: 3rem;
        line-height: normal;
    }

    .slideTextContainer h1 span {
        font-size: 5rem;
    }

    .centerTxtElement span {
        opacity: 0.6;
        font-size: 100vh;
    }

    .centerTxtElement span {
        opacity: 0.6;
        font-size: 100vh;
    }

    .heroMenuBtnContainer a {
        border: 5px solid var(--fadewhiteColor);
        padding: 0.5rem 10rem 0.5rem 0.5rem;
        font-size: 1.2rem;
    }

    .heroMenuBtnContainer a span svg {
        width: 40px;
        right: 0.5rem;
    }

    button.mvToBtm {
        bottom: 3%;
        height: 40px;
        width: 30px;
    }

    .sliderBtnNProgressContainer {
        flex-direction: column-reverse;
        width: 95%;
        right: unset;
        overflow: hidden;
        left: 50%;
        transform: translateX(-50%);
    }

    .sliderProgressContainer {
        margin: 1rem auto;
    }

    .heroMenuBtnContainer {
        margin: 1rem auto;
    }
}

@media only screen and (max-width: 600px) {
    .cartDrawerContainer {
        width: 95%;
        top: 80px;
        left: 50%;
        right: unset;
    }

    .cartDrawerContainer.activeDrawer {
        transform: translate(-50%, 0%) !important;
    }

    .popupForDelAndPic .popupItemsContainer .innerPopupBox {
        width: 90%;
        padding: 1rem;
    }

    .popupForDelAndPic .popupItemsContainer .innerPopupBoxx {
        width: 90%;
        padding: 1rem;
    }

    .innerPopupBox select.form-control option,
    .innerPopupBox select.form-control {
        font-size: 1rem !important;
    }

    .owl-item.active .slideTextContainer h1 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 335px) {
    img.logoImg {
        width: 110px;
    }
}


/* media queies code end  */

nav.mainNav.stickyHeader .rightNavItems {
    display: none;
}

.retourBtn {
    position: relative;
    left: 10px;
}

.retourBtn img {
    position: relative;
    left: 10px;
    height: 50px;
}


/* offer page css end  */


/* link page text area code start  */

.linkPageTxtDetails {
    padding: 0.5rem 0;
}

.linkPageTxtDetails p {
    color: var(--whiteColor);
    font-size: 1rem;
}

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

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

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

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

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

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

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

.mapArea img {
    width: 100%;
}

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


/* link page text area code end  */


/*link pages commomn css end */

textarea {
    box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
    background: transparent;
    color: var(--darkBlue) !important;
    border: none !important;
    margin: 0rem 0 1.5rem 0;
    border-radius: 20px !important;
    font-size: 16px !important;
}

.icoRefresh {
    margin-top: 15px;
}

.customTab {
    display: none;
}

.customTab.show {
    display: block;
}

.carouselTabContainer .btnItem a {
    font-size: 1rem;
    border-radius: 50px;
}

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

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

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

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

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

select {
    box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
    padding: 1rem;
    background: transparent;
    color: var(--darkBlue) !important;
    border: none !important;
    font-size: 16px;
    margin: 0rem 0 1.5rem 0;
    width: 100%;
    border-radius: 100px;
}

select option {
    background: var(--whiteColor) !important;
    border-radius: 100px !important;
    border: 0px !important;
    color: var(--blackColor);
}

select.customInput {
    box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
    padding: 1rem;
    background: transparent;
    color: var(--darkBlue) !important;
    border: none !important;
    font-size: 16px;
    margin: 0rem 0 1.5rem 0;
}

select.customInput option {
    border-radius: 15px !important;
}

div.form-control.rounded-pill.customInput {
    /*! padding: 1rem !important; */
    background: transparent;
    color: var(--darkBlue) !important;
    border: 1px solid #b0b0b0 !important;
    font-size: 16px;
    margin: 0rem 0 1.5rem 0;
}

.custom-select.form-control.rounded-pill.customInput {
    padding: 0px !important;
}

.custom-select {
    position: relative;
    /* font-family: Arial; */
}

span#select2-l42t-container {
    display: none;
}

span#select2-lg5s-container {
    display: none;
}

.custom-select select {
    display: none;
    /*hide original SELECT element:*/
}

.select-selected {
    background-color: whiteColor;
    text-align: start;
}


/*style the arrow inside the select element:*/

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    /*! border: 6px solid transparent; */
    /*! border-color: #fff transparent transparent transparent; */
}


/*point the arrow upwards when the select box is open (active):*/


/* .select-selected.select-arrow-active:after {
border-color: transparent transparent #fff transparent;
top: 7px;
} */


/*style the items (options), including the selected item:*/

.options {
    box-shadow: 0px 0px 3px 4px rgb(129 128 128 / 9%);
    padding: 1rem;
    background: transparent;
    color: var(--darkBlue) !important;
    border: 1px #888 solid !important;
    font-size: 14px;
    margin: 0.8rem 0 1.5rem 0;
    width: 84%;
    height: 24%;
    border-radius: 0px;
}

.select-items div,
.select-selected {
    color: var(--whiteColor);
    padding: 1rem 0 0 1rem;
    border: 1px solid #b0b0b0 important;
    border-color: #b0b0b0;
    cursor: pointer;
    user-select: none;
    border-radius: 50px;
}


/*style items (options):*/

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


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

.select-hide {
    display: none;
}

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

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

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

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

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


.nav-pills .nav-link {
    color: var(--whiteColor);
    border: 1px solid var(--primaryColor);
    border-top-right-radius: 50px solid transparent;
    border-bottom-left-radius: 50px solid transparent;
    position: relative;
    height: 44px;
    padding-left: 27px;
    outline-color: var(--primaryColor);
    margin: 0 5px;
    padding-right: 6px !important;
    font-size: 0.9rem;
}

.nav-pills .nav-linkk {
    color: var(--dark);
    position: relative;
    height: 44px;
    padding-left: 30px;
    margin: 0 5px;
}

.nav-link:after {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -3px;
    width: 0;
    height: 0;
    border-left: 25px solid var(--greyColor);
    margin-right: 10px !important;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
}

.nav-link:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0px;
    z-index: 2;
    width: 0;
    height: 0;
    border-color: var(--primaryColor);
    border-left: 22px solid var(--greyColor);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

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

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

.nav-pills .nav-link.active:after {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -3px;
    width: 0;
    height: 0;
    border-left: 25px solid var(--greyColor);
    margin-right: 10px !important;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
}

.nav-pills .nav-linkk.active:after {
    content: "";
    position: absolute;
    left: -1px;
    bottom: -3px;
    width: 0;
    height: 0;
    margin-right: 10px !important;
}

.nav-pills .nav-link.active:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0px;
    z-index: 2;
    width: 0;
    height: 0;
    border-color: var(--primaryColor);
    border-left: 22px solid var(--primaryColor);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
}

.nav-pills .nav-linkk.active:before {
    content: "";
    position: absolute;
    right: -20px;
    bottom: 0px;
    z-index: 2;
    width: 0;
    height: 0;
}

.mesCommandes h5 {
    color: var(--secondryColor);
    font-size: 1rem;
}

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

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

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

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

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

.cartDrawerContainer.activeDrawer .validateBtnPrimary {
    /* position: fixed; */
    bottom: 25px;
    width: 38vw;
    margin-bottom: 10px;
    z-index: 111;
    padding: 0px 0px 0px 20px;
    margin-left: -109px;
    /* left: 1px; */
    background: whiteColor;
    display: flex;
    justify-content: center;
}

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

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


/* Hide the browser's default checkbox */

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


/* Create a custom checkbox */

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


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

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


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

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

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


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

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


/* Show the checkmark when checked */

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


/* Style the checkmark/indicator */

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

span.select2.select2-container.select2-container--default {
    display: none;
}

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


/* Hide the browser's default checkbox */

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


/* Create a custom checkbox */

.checkmarkTwo {
    position: absolute;
    top: 25px;
    left: 0;
    height: 30px;
    width: 30px;
    background: none;
    border-radius: 100px;
    border: 5px solid var(--bs-gray-600);
}


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

.customCheck:hover input~.checkmarkTwo {
    background-color: #f9f9f9;
}


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

.customCheck input:checked~.checkmarkTwo {
    background-color: none;
    border: 5px solid #DF0710;
    color: var(--primaryColor);
}

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


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

.checkmarkTwo:after {
    content: "";
    position: absolute;
    display: none;
}


/* Show the checkmark when checked */

.customCheck input:checked~.checkmarkTwo:after {
    display: block;
    color: var(--primaryColor);
}


/* Style the checkmark/indicator */

.customCheck .checkmarkTwo::after {
    left: 5px;
    top: 6px;
    width: 10px;
    height: 10px;
    /*! border: solid whiteColor; */
    /*! border-top-width: medium; */
    /*! border-right-width: medium; */
    /*! border-bottom-width: medium; */
    /*! border-left-width: medium; */
    /*! border-width: 0 3px 3px 0; */
    /*! -webkit-transform: rotate(45deg); */
    /*! -ms-transform: rotate(45deg); */
    /*! transform: rotate(45deg); */
    background: #DF0710 !important;
    border-radius: 100px;
}

.customCheck img {
    width: 100px;
}

.validationCom h6,
.validationCom p {
    text-align: left !important;
}

.validateBtn h5 {
    margin: 0 30px 0 30px;
}

.appliquerBtn {
    font-size: 0.7rem !important;
    padding: 0 10px 0 10px;
}

.confirmation h5 {
    color: var(--primaryColor);
    margin: 30px 0px;
}

.confirmation h6 {
    color: var(--primaryColor);
}

.confirmation input[type="radio"] {
    margin-right: 10px;
}

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

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

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

.tabTitle {
    margin: 10px 0 50px 0;
    text-align: center;
}

.votreFidelite {
    margin: 50px 0px;
}

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

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

.prodImageContainer img.img-fluid.productBoxImage {
    /* background: url(../img/woodenPlate.png) center top no-repeat; */
}

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

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

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

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

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

p.comDetailHead.pt-3 {}

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

.allergeneLinks a {
    color: var(--primaryColor);
    margin: 0 10px;
}

.allergeneLinks a:nth-child(1) {
    margin-left: 0px;
}

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

tbody,
td,
tfoot,
th,
thead,
tr {
    border: none !important;
    border-color: inherit !important;
    border-style: none !important;
    padding: 10px;
}

tbody.CustomTableBorder,
td,
tfoot,
th,
thead,
tr {
    border-color: inherit !important;
    border-style: none !important;
    padding: 10px;
}

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

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

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

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

.MonTabCart {
    left: -100px;
}

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

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

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

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

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

.secTwo {
    background-color: #ff0;
    padding: 150px 0px;
    color: var(--darkBlue);
    margin-top: 258px;
}

.secTwo .BtnFull {
    border-radius: 20px;
    width: 59%;
    font-family: hwt-artz !important;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-align: center;
    height: 82px !important;
    background-color: var(--darkBlue);
    padding: 16px;
    margin: 30px auto;
    line-height: 50px !important;
}

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

.secTwo h2 {
    font-family: hwt-artz !important;
    font-size: 2.8rem;
    letter-spacing: 1px;
}

.secThree {
    padding-top: 50px;
    font-family: hwt-artz !important;
    font-size: 18px;
    letter-spacing: 1px;
    position: relative;
}

.secThree h2 {
    color: var(--primaryColor);
    font-family: hwt-artz !important;
    font-size: 2.8rem;
    letter-spacing: 1px;
    padding-top: 50px;
}

.secThree {
    color: var(--darkBlue);
}

img.vert-move {
    -webkit-animation: mover 0.2s infinite alternate;
    animation: mover 0.2s infinite alternate;
}

img.vert-move {
    -webkit-animation: mover 0.2s infinite alternate;
    animation: mover 0.2s infinite alternate;
}


/*updates 01-06-22*/

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

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

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

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

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

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

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

.customReciptClass {}

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

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

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

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

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

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

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

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

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

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

.customSize {
    font-size: 55px;
    text-align: left;
    line-break: 1;
}

.col-lg-6.col-12.my-auto {
    position: relative;
    bottom: 96px;
}

.fa {
    font-size: 25px;
}

.checked {
    color: orange;
}

.ShadowContainerBox {
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    width: 74%;
    height: 249px;
    font-size: 17px !important;
    margin: 4rem rem 0;
}

.totalPriceBorder {
    border-top: #00000021 1px solid;
}

@-webkit-keyframes mover {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-5px);
    }

    75% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-5px);
    }

    75% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.vert-move {
    margin-left: 160px;
    position: absolute;
    bottom: 0px;
}

.talkCloud {
    font-size: 25px;
    position: relative;
    left: 373px;
    top: 125px;
    z-index: 1;
}

.talkCloud .contNo {
    -webkit-animation: Contmover 0.2s infinite alternate;
    animation: mover 0.2s infinite alternate;
}

.talkCloud.contNo {
    -webkit-animation: mover 0.2s infinite alternate;
    animation: mover 0.2s infinite alternate;
}

@-webkit-keyframes Contmover {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-5px);
    }

    75% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes Contmover {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-5px);
    }

    75% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(-10px);
    }
}

.cubes {
    position: absolute;
    width: 23%;
    left: 29%;
    top: -69%;
    transform: scale(1.6);
}

img.cubes {
    -webkit-animation: cubesMover 1s infinite alternate;
    animation: cubesMover 1s infinite alternate;
}

img.cubes {
    -webkit-animation: cubesMover 1s infinite alternate;
    animation: cubesMover 1s infinite alternate;
}

@-webkit-keyframes cubesMover {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-5px);
    }

    75% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@keyframes cubesMover {
    0% {
        transform: translateY(0);
    }

    25% {
        transform: translateY(-2px);
    }

    50% {
        transform: translateY(-5px);
    }

    75% {
        transform: translateY(-7px);
    }

    100% {
        transform: translateY(-10px);
    }
}

@media only screen and (max-width: 1200px) {
    .cubes {
        position: relative;
        left: 38%;
        width: 28%;
        top: -48%;
    }
}

@media only screen and (max-width: 991px) {
    .secTwo .BtnFull {
        width: 80%;
        font-size: 18px;
        letter-spacing: 0px;
    }

    .cubes {
        left: 40%;
    }

    .vert-move {
        margin-left: 80px;
    }

    .talkCloud {
        left: 295px;
    }
}

.videoSec {
    padding: 50px 20px 80px 20px;
}

.videoSec video {
    border-radius: 30px;
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.35);
    -webkit-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.35);
}

.inputSmall {
    font-size: 13px !important;
    margin: 0rem 0 0.4rem 0 !important;
}

.ouertTxt {
    color: var(--darkGreen) !important;
}

.mapLeftDetails {
    position: absolute;
    top: 62px;
    left: 0px;
    box-shadow: 0px 1px 18px 3px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: 0px 1px 18px 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 1px 18px 3px rgba(0, 0, 0, 0.3);
}

.prodSideIng img {
    width: 100px;
}

.burgerOffer {
    position: absolute !important;
    width: 100%;
    height: 78%;
    padding: 0px;
    z-index: 1;
    transform: scale(3.2);
    margin: -23px 41px;
}

.burgerOfferDiv {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.5%;
}

@media only screen and (max-width: 1460px) {
    .burgerOffer {
        transform: scale(2.2);
        /* margin: -83px; */
        width: 80%;
        left: 7%;
    }

    .secTwo {
        margin-top: 210px;
    }
}

@media only screen and (min-width: 1900px) {
    .cubes {
        position: absolute;
        width: 17%;
        left: 43%;
        top: -75%;
        transform: scale(1.6);
    }
}

@media only screen and (max-width: 1300px) {
    .burgerOffer {
        transform: scale(2.2);
        /* margin: -83px; */
        width: 80%;
        left: 7%;
    }

    .customSize {
        font-size: 55px;
        text-align: left;
        line-break: 1;
        margin: 64px 31px 0px 0px;
    }

    .secTwo .BtnFull {
        font-size: 1.5rem;
        letter-spacing: 0px;
        margin: 0px 0px 0px 191px;
    }

    .secTwo h2 {
        font-size: 2.8rem;
    }

    .secTwo {
        padding: 50px 0px;
    }

    .secTwo br {
        display: none;
    }

    .secThree h2 {
        padding-top: 0px !important;
    }
}

@media only screen and (max-width: 990px) {
    .burgerOffer {
        position: absolute;
    }

    .burgerOffer {
        position: absolute;
        width: 100%;
    }

    .secTwo {
        margin-top: 50px;
    }

    .vert-move {
        right: 0px;
    }

    .mobile {
        position: relative;
        left: -150px;
    }
}

.sliderHeading {
    position: relative;
    top: 107px;
    z-index: 1;
    text-align: center;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 3rem;
    color: #2d4355;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.sliderHeading span {
    color: var(--primaryColor);
    display: inline-block;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.glow {
    color: var(--primaryColor) !important;
    text-align: center;
}

@-webkit-keyframes glow {
    from {
        text-shadow: 0 0 10px #DF0710, 0 0 20px #DF0710, 0 0 30px #fff, 0 0 40px #fff, 0 0 50px #fff, 0 0 60px #fff, 0 0 70px #fff;
    }

    to {
        text-shadow: 0 0 20px #DF0710, 0 0 30px #DF0710, 0 0 40px #fff, 0 0 50px #fff, 0 0 60px #fff;
    }
}

.span.img-wrap {
    -webkit-filter: drop-shadow(5px 5px 5px #222);
    filter: drop-shadow(5px 5px 5px #222);
}

.PizzaCustomAnimation {
    color: #2d4355;
    position: relative;
    font-size: 40px;
    top: -6%;
    left: 49%;
}

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

p.pizzaName {
    /* position: fixed; */
    /* top: 59%; */
    line-height: 34px;
    width: 20px;
    text-align: right;
    /* left: 42%;*/
}

.arrow-img {
    width: 6%;
    height: 10%;
    /* color: aqua; */
    position: fixed;
    left: 44%;
    opacity: 69%;
    bottom: 38%;
    transform: rotate(303deg);
}

.ImageCustomClass {
    max-width: 100%;
    height: auto;
    color: #2d4355;
    position: relative;
    left: -5%;
    z-index: 1;
    bottom: 29px;
    transform: scaleX(-1);
}

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

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

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

.CustomCartText {
    width: fit-content;
    border-radius: 5%;
    font-size: 2px;
    height: max-content;
    box-shadow: 1px 1px 6px 5px rgb(45 67 85 / 15%);
    margin: 0rem 2rem 2rem 4rem;
    padding: 3% 2% 2% 9%;
}

.CustomCartTextt {
    width: 89%;
    font-size: 15px;
    height: auto;
    border-radius: 3%;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    margin: 0rem 2rem 2rem 3rem;
    padding: 30px;
}

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

.CustomTabClass {
    padding: 20px 30px;
}

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

.CustomExtraImage {
    width: 100px;
    border: 1px solid palevioletred;
    border-radius: 33%;
    display: inline-block;
}

.CustomExtraImagee {
    width: 68px;
    height: 62px;
    margin: -12px;
}

.CustomExtraText {
    margin: 6px;
    display: inline-block;
    text-align: center;
}

.CustomExtraButton {
    padding: 8px;
    /*! border: 1px solid var(--lightgreen); */
    background-color: var(--whiteColor);
    height: 59px;
    display: inline-block;
    text-align: center;
    border-radius: 18px;
    width: max-content;
}

button.CustomExtraButton::before {
    content: image-set("img/check-circle-fill.svg" 1x);
    font-size: 2rem;
    display: inline-table;
    position: absolute;
    left: -8%;
    top: 8%;
    color: rgba(255, 144, 0, 1);
}

.CustomClassVotre {
    font-size: 16px;
    padding: 0;
    color: var(--navydarkblue);
}

.formShadowContainer2 {
    border-radius: 20px;
    padding: 2rem;
    /* position: absolute; */
    color: var(--whiteColor) !important;
    /* width: max-content; */
    font-size: 15px;
    box-shadow: 0px 0px 30px 1px rgba(0, 0, 0, 0.45);
    margin: 0rem auto;
}

.row.prodSideIngg {
    width: 150% !important;
}

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

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

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

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

.CustomColorPizza ul li {
    color: var(--whiteColor);
    padding-right: 60px;
}

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

#CustomButtonsPizza {
    transform: translate(-38px, 3px);
}

@media (min-width: 992px) {
    .paddingClass {
        padding-right: 0rem !important;
        padding-left: 2.5rem !important;
    }
}

.CustomMapMsgBox {
    width: 250px;
    height: 100px;
    background-color: whiteColor;
    bottom: 430px;
    border-radius: 10px !important;
    font-size: 10px;
    text-align: center !important;
    left: 548px;
    top: 183px;
    color: var(--navydarkblue);
    border: var(--primaryColor) solid 1px;
}

.CustomMapMsgBoxx {
    width: 350px;
    height: 100px;
    background-color: whiteColor;
    bottom: 430px;
    border-radius: 10px !important;
    font-size: 10px;
    text-align: center !important;
    left: 420px;
    top: 266px;
    color: var(--navydarkblue);
    border: var(--primaryColor) solid 1px;
}

.CustomMapMsgBox:after {
    content: " ";
    width: 0px;
    height: 0px;
    border-top: 10px solid transparent;
    border-bottom: 10px solid var(--primaryColor);
    border-right: 11px solid var(--primaryColor);
    border-left: 10px solid transparent;
    position: absolute;
    outline-offset: 1px;
    right: 94%;
    top: 93%;
    transform: rotate(209deg);
}

.CustomMapMsgBox:before {
    content: " ";
    width: 0px;
    height: 0px;
    border-top: 11px solid transparent;
    border-bottom: 6px solid whiteColor;
    border-right: 14px solid whiteColor;
    border-left: 10px solid transparent;
    position: absolute;
    z-index: 1;
    outline-offset: 1px;
    right: 92%;
    top: 93%;
    transform: rotate(206deg);
}

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

.CustomMapMsgBoxx:before {
    content: " ";
    width: 0px;
    height: 0px;
    border-top: 11px solid transparent;
    border-bottom: 6px solid whiteColor;
    border-right: 14px solid whiteColor;
    border-left: 10px solid transparent;
    position: absolute;
    z-index: 1;
    outline-offset: 1px;
    right: 94%;
    top: 93%;
    transform: rotate(206deg);
}

h4.TextMsgBox {
    font-size: 15px;
}

p.textMsgBox {
    font-size: 15px;
    text-align: center;
    padding: 0px;
    margin: 0px;
}

img.icon {
    width: 46px;
    height: 32px;
    margin: 8px 2px 6px 112px;
    padding: 0px;
}

.CustomIconMsgBox {
    font-size: 10px;
    width: 20px;
    line-break: none;
}

ul#extraIngredients {
    width: 100%;
    align-items: center;
    border: none;
    position: relative;
    z-index: 5;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-y: hidden;
    overflow-x: scroll;
}

ul#extraIngredients {
    width: 100%;
    align-items: center;
    border: none;
    position: relative;
    z-index: 5;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-y: hidden;
    overflow-x: scroll;
}


/* width */

ul#extraIngredients::-webkit-scrollbar {
    width: 1px;
}


/* Track */

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


/* Handle */

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


/* Handle on hover */

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

ul#extraIngredients button.nav-link {
    color: var(--blackColor);
    font-size: 1rem;
    margin: 0.5rem 0.5rem;
    /*! padding: 10px 10px; */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid var(--greyColor);
    transition: all linear 0.3s;
    background: var(--whiteColor);
}

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

ul#extraIngredients button.nav-link:after {
    content: " " !important;
    border: none;
}

ul#extraIngredients button.nav-link:before {
    content: " " !important;
    border: none;
}

.formShadowContainer.aos-init.aos-animate {
    font-size: 15px;
}

.BodaySectionTwo {
    overflow: scroll;
    height: 400px;
}

.HeaderSection {
    height: 50px !important;
}

.CustomHeaderSection {
    border-bottom: 1px solid var(--lightGray);
    margin-bottom: 1rem;
    width: 80%;
    margin: 14px 0px 7px 19px;
}

.CustomHeaderSection h3.HeadingTwo {
    color: var(--primaryColor) !important;
    font-size: 1.7rem;
}

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

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

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

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

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

.CustomList li label img {
    width: 86px;
}

.CustomList li label span {
    width: 25px !important;
    height: 25px !important;
}

.CustomList li label span::after {
    left: 5px !important;
    top: 2px !important;
    width: 7px !important;
    height: 10px !important;
}

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

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

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

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

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

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

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

.customNewDesign {
    color: var(--lightGreen);
    display: inline-block;
    position: inherit;
    right: 80px;
}

img.leaflet-marker-icon.leaflet-zoom-animated.leaflet-interactive {
    width: 27px !important;
    height: 41px !important;
}

.userIcon2::before {
    content: "";
    width: 10px;
    height: 10px;
    /*background: var(--green);*/
    padding: 0px 0px;
    border-radius: 110%;
    transform: scale(1);
    display: block;
    position: absolute;
    left: 15px;
    top: -3px;
}

.userIcon::before {
    content: "";
    width: 10px;
    height: 10px;
    background: var(--secondryColor);
    padding: 0px 0px;
    border-radius: 110%;
    transform: scale(1);
    display: block;
    position: absolute;
    left: 15px;
    top: -3px;
}

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

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

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


/* new Divs start */

.validateBtn a {
    color: #fff;
}

.bonjourTxt {
    /* position: absolute; */
    /* right: -28px; */
    /* bottom: -110px; */
    /* border: 1px solid lightgray; */
    width: 16rem;
    /* margin: -37px 34px; */
    border-radius: 10px;
    letter-spacing: 0.4px;
    display: none;
    background-color: var(--greyColor);
}

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

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

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

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

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


/* new Divs end */

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

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

.avec {
    background: #000;
    background-position: center top;
    /*! margin: 80px auto 0px auto; */
    padding-top: 50px;
    color: var(--blackColor);
    /*! background-repeat: no-repeat; */
}

.avec .app-icon {
    display: flex;
    justify-content: flex-start;
    align-content: center;
}

.avec h1 {
    text-align: left;
    font-weight: 700;
    color: var(--whiteColor);
    font-size: 50px;
    padding-left: 20px;
}

.avec h1.aos-init {
    margin-top: -10vh !important;
}

.avec h1 .clrylw {
    font-weight: 700;
    color: var(--secondryColor);
    font-size: 40px;
}

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

.avec p {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

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

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

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

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

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

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


/* crousal start */

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

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

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

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

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

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

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


/*  crousel end */

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

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

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

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

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

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

.indBg {
    background: var(--whiteColor) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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


/* 05-MAY-2023 */

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

.entryDrawerContainer {
    width: 288px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
    color: #fff !important;
}

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

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

footer img {
    width: 100%;
}

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

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

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

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

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

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

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

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

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

.linkPageTxtDetails h1,
.linkPageTxtDetails h5 {
    color: var(--whiteColor) !important;
}

#accompprod0 font,
#accompprod1 font,
#accompprod2 font,
#accompprod3 font,
#accompprod4 font,
#accompprod5 font,
#accompprod6 font,
#accompprod7 font,
#accompprod8 font,
#accompprod9 font,
#accompprod10 font {
    color: var(--primaryColor) !important;
}

.sectionOne {
    background-image: url(../img/cheif.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-color: var(--greyColor);
    line-height: 30px;
    margin-top: -7px;
}

.offers .container {
    max-width: 1350px !important;
}

.sectionOne .text-section {
    position: relative;
    left: -10vw;
}

/* @media (max-width:1515px) {
    .sectionOne {
        margin-top: -5%;
    }
}

@media (max-width:1400px) {
    .sectionOne {
        margin-top: -15%;
    }
}

@media (max-width:1250px) {
    .sectionOne {
        margin-top: -21%;
    }
} */

.sectionOne h1 {
    font-size: 55px !important;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primaryColor);
    margin-top: 50px;
}

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

.sectionOne p {
    padding: 0 100px;
}

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

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

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

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

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

.offers {
    background: var(--greyColor);
    padding: 50px 0px 70px 0px;
}

.offers h4 {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primaryColor);
    text-align: left;
    font-family: entog;
    letter-spacing: 2px;
    font-size: 43px;
}

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

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

.offers p {
    color: var(--whiteColor);
    opacity: 0.8;
    text-align: left;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
}

.offers img {
    border-radius: 25px;
    margin-top: 10px;
}

.offer-main-container {
    border: 1px solid var(--whiteColor);
    flex: 0 0 31.333333% !important;
    margin: 0px 10px;
    border-radius: 20px;
    padding-right: 10px !important;
    padding-left: 10px !important;
}

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

.priceBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px
}


/* Button 1e Start */

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

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

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

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

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

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

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

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

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


/* Button 1e End */

.stars {
    float: left;
    position: absolute;
    right: 17px;
    top: 3px;
}

.stars img {
    width: 20px;
}

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

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

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

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

.leftImgSection {
    margin: -55px 40px 0px;
}

.leftImgSection img.main-product {
    width: 125%;
    max-width: 125% !important;
    position: relative;
    left: -8vw;
    top: 1vw;
}

.currentReview {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* border: 1px solid #000; */
    background: #fff;
    color: #000;
    border-radius: 20px;
    padding: 2vw;
    line-height: 1.7vw;
    margin-bottom: 40px;
}

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

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

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

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

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

.reviewSection .positionolive {
    position: absolute;
    left: -11vw;
    top: 7vh;
    width: 20%;
    animation: jello 2s infinite;
    transform-origin: center;
}

@keyframes jello {
    11.1% {
        transform: none
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg)
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }

    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg)
    }

    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg)
    }

    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
    }

    100% {
        transform: none
    }
}

.reviewSection .positionabslt {
    position: absolute;
    animation: 4s ease-in-out 0s infinite normal none running bounces;
    left: 29%;
    top: -8vw;
    rotate: 168deg;
    z-index: 0;
}

@-webkit-keyframes bounces {
    0% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(-5px);
    }
}

.swiper {
    width: 350px !important;
    height: 100%;
    margin: 25px 0px !important;
}

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

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

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

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

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

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

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

.reviewBtn {
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 111;
}

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

.reviewBtn a:hover {
    background-color: #DF0710;
    color: #fff;
    border: 1px solid #DF0710;
}

video {
    /* margin-top: 110px; */
}

.offers video {
    width: 100%;
    margin-top: 30px;
}

.slider img {
    width: 80%;
}

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

.hero-section {
    display: flex;
    justify-content: center;
    background: #000 !important;
    padding: 0px 0px;
}

.slider-section {
    background: url(../img/slide1-main-bg.jpg) center center no-repeat;
    background-size: cover;
    margin: 75px 0px 0px 0px;
    padding: 50px 0pc 100px 0px;
}

@media (max-width:1600px) {
    .slider-section {
        padding: 50px 0px 0px 0px;
    }
}

@media (max-width:1100px) {
    .slider-section {
        margin-top: 10%
    }
}

img {
    max-width: 100%;
    height: auto;
}

.img_producto_container {
    width: 100vw;
    height: 43vw;
    position: relative;
    overflow: hidden;
    padding-top: 400px !important;
}

.img_producto {
    position: absolute;
    display: flex;
    justify-content: center;
    top: 0;
    left: -5%;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: transform 0.5s ease-out;
    padding: 4%;
}

.salad-img {
    position: relative;
    /* display: flex; */
    /*     justify-content: center; */
    top: 10%;
    /* width: 100%; */
    /* height: 100%; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    /* background-size: cover; */
    /* padding: 4%; */
    /* z-index: 0 !important; */
    left: 9%;
    border-radius: 50%;
}

.imgabslt {
    position: absolute;
    left: 25vw;
    top: 3vh;
    width: 47%;
}

.salad-img img {
    width: 95%;
    position: relative;
    top: 5vh;
    border-collapse: separate;
    /* transition: all linear 0.5s; */
    left: 10%;
    animation: zoom-in-zoom-out 6s ease infinite;
}

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

    25% {
        transform: scale(1.1, 1.1);
    }

    50% {
        transform: scale(1.1, 1.1);
    }

    75% {
        transform: scale(1.1, 1.1);
    }

    100% {
        transform: scale(0, 0);
    }
}

.salad-ingrd {
    margin-top: -4%;
    position: relative;
    left: 31%;
    z-index: 111 !important;
}

.salad-ingrd img {
    width: 77%;
    animation: 5s linear 0s infinite normal none running bike;
}

@media (max-width:1800px) {
    .salad-ingrd img {
        width: 70%;
    }
}

@media (max-width:1700px) {
    .salad-ingrd img {
        width: 67%;
    }
}

@media (max-width:1600px) {
    .salad-ingrd img {
        width: 62%;
    }
}

@media (max-width:1500px) {
    .salad-ingrd img {
        width: 56%;
    }

    .imgabslt {
        position: absolute;
        left: 25vw;
        top: -1vh;
        width: 47%;
    }

    .salad-img img {
        width: 95%;
        position: relative;
        top: 2vh;
        border-collapse: separate;
        transition: all linear 0.5s;
        left: 10%;
    }
}

@media (max-width:1400px) {
    .salad-ingrd img {
        width: 54%;
    }
}

@media (max-width:1300px) {
    .salad-ingrd img {
        width: 49%;
    }
}

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

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

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

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

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

.salad-1,
.salad-2,
.salad-3,
.salad-4,
.salad-5 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.salad-1 {
    /* position: relative;
left: -110%;
top: 26px; */
    z-index: 111 !important;
}

.salad-1 button,
.salad-2 button,
.salad-3 button,
.salad-4 button,
.salad-5 button {
    background: url(../img/salad-prod-bg.png) center center no-repeat !important;
    background-size: contain !important;
    border: none;
}

.salad-1 button {
    position: relative;
    left: 7%;
    z-index: 111 !important;
    cursor: pointer;
    background: none;
    border: none;
}

.salad-2 button {
    position: relative;
    left: -14%;
    z-index: 111 !important;
    cursor: pointer;
    background: none;
    border: none;
}

.salad-3 button {
    position: relative;
    left: -29%;
    z-index: 111 !important;
    cursor: pointer;
    background: none;
    border: none;
}

.salad-4 button {
    position: relative;
    left: -17%;
    z-index: 111 !important;
    cursor: pointer;
    background: none;
    border: none;
}

.salad-5 button {
    position: relative;
    left: 7%;
    z-index: 111 !important;
    cursor: pointer;
    background: none;
    border: none;
}


/*
@media (max-width:1800px) {
    .salad-1 button {
        left: 15%;
        top: -5px;
    }
    .salad-2 button {
        left: -15%;
        top: -47px;
    }
    .salad-3 button {
        left: -26%;
        top: -72px;
    }
    .salad-4 button {
        left: -17%;
        top: -74px;
    }
    .salad-5 button {
        left: 45%;
        top: -130px;
    }
} */

.sectionOne .container-fluid {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

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

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

.evenTxt .txt-main {
    background: var(--whiteColor);
    border-radius: 30px;
}

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

.evenTxt p {
    font-size: 10px;
}

.evec-clrRed {
    color: var(--primaryColor);
}

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

.avec .col-lg-5 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /* margin-bottom: -180px; */
}

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

.svg-txt {
    position: absolute;
    z-index: 111 !important;
}

.img_producto svg {
    position: absolute;
    z-index: -1;
    top: -10%;
    left: -80%;
    fill: currentColor;
    height: auto;
    max-width: 100vmin;
    transform-origin: center;
    width: 134%;
    border-radius: 100%;
    font-stretch: expanded !important;
    /* background: url(../img/slider-main-bg.png) center center no-repeat;
    background-size: cover; */
    color: #fff !important;
    font-family: impact;
}

.img-responsive {
    /* width: 100% !important; */
    height: auto;
}

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

.popupHeadingIcon a:hover {
    color: var(--whiteColor);
    text-decoration: underline !important;
    text-decoration-thickness: 0.1rem !important;
    text-underline-offset: 4px;
}

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

.sectionOne video {
    margin: 0px !important;
    width: 96%;
}

.userFormContainer textarea.form-control {
    color: var(--blackColor) !important;
}

.userFormContainer textarea.form-control:hover,
.userFormContainer textarea.form-control:focus {
    background-color: var(--whiteColor) !important;
    color: var(--blackColor) !important;
}

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

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

.pizzabtn {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 4vw;
}

.pizzabtn a {
    margin-top: 5vh;
    padding: 0px 20px;
    color: var(--white);
    font-size: 30px;
    font-weight: 900;
    text-align: center;
    text-shadow: 0 1px 0 #818181, 0 2px 0 #818181, 0 3px 0 #818181, 0 4px 0 #818181;
}

.pizzabtn a.active,
.pizzabtn a:hover {
    color: var(--primaryColor);
    text-shadow: 0 1px 0 #dba1a1, 0 2px 0 #d89999, 0 3px 0 #d59292, 0 4px 0 #d28a8a;
}

.leaflet-popup-pane p {
    color: #000;
}

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

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

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

.socialIcons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* left:2.5%; */
}

.socialIcons a img {
    width: 56px;
}

.footer-bottom {
    width: 70% !important;
}

.footer-bottom .ftTxtContainer {
    padding: 20px 0px 0px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.footer-bottom .ftTxtContainer button {
    display: inline-block;
    background: var(--primaryColor);
    color: var(--white);
    border: none;
    height: 50px;
    padding: 0px 20px;
    border-radius: 50px;
    position: relative;
    left: -30px;

}

.footer-bottom .ftTxtContainer input {
    display: inline-block;
    height: 50px;
    margin-right: 10px;
    background: #000;
}

/*  */
/*  */
/*  */
.shopping-cart-icon-wrapper {
    margin-left: auto;
}

.shopping-cart-icon {
    width: 39px;
    margin-top: 0 !important;
    border-radius: 0 !important;
}

.Mobile-sec-img {
    width: 60%;
    margin-bottom: 40px;
}

.poductSizesSimple ul {
    flex-wrap: nowrap !important;
    width: 95%;
}

.poductSizesSimple ul li a {
    font-size: 14px !important;
    margin: 0.3rem 0.3rem !important;
    padding: 10px 5px !important;
}

#ingsupp ul {
    padding-right: 150px !important;
}

@media screen and (max-width:1220px) {
    .extraList .customRadio {
        font-size: 17px;
    }
}

#extraIngredientsContent .minus {
    order: 3;
}

#extraIngredientsContent .minus+input {
    order: 4;
}

#extraIngredientsContent .plus {
    order: 5;
}

.userFormContainer a {
    color: #df0710;
}

#cartDrawer2 img {
    filter: invert(1);
    margin-right: 15px !important;
}

a[href="votre-compte.php?logout=logout"] {
    color: #df0710;
}

/* custom checkbox */
input[name="payement[]"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-radius: 4px;
    position: relative;
    cursor: pointer;
    top: 6px;
}

/* Style for the checkbox when checked */
input[name="payement[]"]:checked {
    background-color: #df0710;
    border: 2px solid #df0710;
}

input[name="payement[]"]:checked::after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 6px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#zoneRechargement .linkPageTxtDetails .col-lg-7 {
    max-width: 70%;
}

.CustomCartTextt table td:nth-child(2) {
    text-wrap: nowrap
}

.CustomCartTextt table td:nth-child(2) h6 {
    text-wrap: nowrap
}

/*  */
/*  */
/*  */
@media screen and (max-width:1560px) {
    .prodTypeBtns a {
        font-size: 13px;
    }

    /* .categoryBox a {
        padding: 16px 4px 16px 10px;
    } */

    .prodTypeBtns a:first-child::before {
        right: -4px;
    }

    .prodTypeBtns {
        justify-content: start;
    }
}

a:hover {
    color: var(--secondryColor) !important;
}

#menu6 a {
    color: #df0710;
}

.section5-text-wrapper h1 {
    text-align: center;
    font-size: 60px;
    text-transform: uppercase;
}

.section5-text-wrapper .clrred {
    font-family: entog;
}

.x-twitter-icon {
    width: 40px !important;
}

.prodPriceAndAddBtn a:hover {
    color: black !important;
}

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

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

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

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

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

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

.menuItems img {
    width: 23px;
}

.menuItems img[src="img/phone.svg"],
.menuItems img[src="img/chartpaper.svg"] {
    width: 15px;
    margin-left: 4px;
    margin-right: 5px;
}

.menuItems img[src="img/radioactive.svg"] {
    width: 18px;
    margin-left: 2px;
    margin-right: 3px;
}

#cartDrawer .quantSelContainer,
#Cartch .quantSelContainer {
    width: auto;
    right: 0;
}

@media screen and (max-width:1300px) {
    .prodTypeBtns a:nth-child(2) {
        margin-left: -10px;
    }
}

/*  */

@media screen and (max-width:1520px) {
    .prodTypeBtns.show .addToCartBtn {

        padding-right: 10px
    }

    .prodTypeBtns.show a[title="Personnaliser"] {
        padding-left: 10px;

    }
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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

.linkPageTxtDetails a[href="votre-compte.php"] {
    color: var(--primaryColor);
}

#CustomDesc p {
    text-wrap: balance
}

.menuListeBtns .owl-dots {
    display: none;
}

.menuListeBtns .owl-dots:last-child {
    display: flex !important;
}

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

#zoneRechargement .row.mx-lg-5.px-lg-5.px-md-5 {
    justify-content: space-between;
}

#extraIngredientsContent ul.d-flex.flex-row.flex-wrap li {
    padding-right: 100px;
}

#extraIngredientsContent .quantSelContainer {
    right: 30px;
}


#cartDrawer .validateBtnPrimary {
    margin-left: 0 !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
}

#cartDrawer .btn.validateBtn {
    width: 500px;
    margin: 14px 0;
}

.footer .aos-init {
    transform: translate(0) !important;
    opacity: 1 !important;
}

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

.linkPageTxtDetails .formShadowContainer a[href="index.php"] {
    color: var(--primaryColor);
}

#Cartch form[name="form_reduction"] input[name="code_reduction"] {
    background-color: transparent;
}