* {
    padding: 0px;
    margin: 0px;
}

html, 
body, 
#root {
    height: 100%;
    background-color: #103d2a;
    font-family: 'Noto Naskh Arabic', serif;

}

/* ------- main start ------- */
.wraper {
    display: flex;
    justify-content: space-between;
    background-color: #103d2a;
    height: 100%;
    overflow: scroll;
    overflow-x: hidden;
}

.wraper .menu {
    width: 100%;
    max-width: 500px;
    position: relative;
}

.menu-items .categories {
    width: 100%;
    max-width: 500px;
}

.menu-items .categories-head {
    width: 100%;
    max-width: 500px;
}

.wraper .menu .footer {
    font-size: 15px;
    color: #FFF;
    text-align: center;
    padding-bottom: 5px;
}

.wraper .menu .footer .caviar {
    color: #D77E07;    
}

.wraper .main-logo {
    text-align: center;
    background-color: #103d2a;
    border-left: 1px solid black;
    width: calc(100% - 500px);
    position: fixed;
    overflow: hidden;
    height: 100%;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.wraper .main-logo img {
    width: 250px;
    height: 90px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


@media only screen and (max-width: 1280px) {
    
    .wraper .menu{
      max-width: 100%;
    }

    .menu-items .categories {
        max-width: 100%;
    }

    .categories-head {
        max-width: 100%;
    }

    .wraper .main-logo {
        display: none;
    }

    .carousel .slide img {
        height: 185px !important;
        object-fit: cover;
    }
}

@media 
  (min-device-width: 800px) 
  and (max-device-width: 1280px) {

    .menu-items .items {
        width: 70% !important;
    }

    .carousel .slide img {
        height: 500px !important;
        object-fit: cover;
    }

    .intro .footer {
        left: 45% !important;
    }

    .category .category-item { 
        height: 200px !important;
        margin-bottom: 50px !important;
    }


}


/* ------- main end ------- */

/* ------- intro start ------- */

.intro {
    /* background-image: url('../assets/intro-cover.png');
    background-size: cover; */
    height: 100vh;
    position: relative;
    background-position: 0 0;
    animation: parallax 25s infinite linear;
}

@keyframes parallax {
    0% { background-position: 0 0; }
    50% { background-position: -80px 0; }
    100% { background-position: 0 0; }
  }

.intro .head{
    margin: auto;
    text-align: center;
    padding-top: 16vh;
    position: relative;
}

.send-feedback {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
}

.send-feedback a {
    font-size: 16px;
    margin: 8px;
    color: #FFF;
    text-decoration: none;

    display: flex;
    align-items: center;
    background-color: #103d2a2e;
    padding: 3px 6px;
    border-radius: 8px;
}

.send-feedback svg{
    font-size: 26px;
    margin-right: 4px;
}


.intro .head img {
    width: 240px;
    height: 75px;
    padding-top: 15vh;
}

.intro .head h3 {
    margin-bottom: 10px;
    font-size: 28px;
    color: #FFF;
}

.intro .head p {
    color: #FFF;
    font-size: 20px;
}

.intro .form {
    margin: auto;
    margin-top: 20px;
}


.intro .form button {
    display: block;
    margin: auto;
    border-radius: 15px;
    border-top-left-radius: 1px;
    width: 80%;
    height: 43px;
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #FFF;
    background: #103d2a;
    cursor: pointer;
    border: 1px solid #103d2a;
}

.intro .form .langBtnContainer {
    display: flex;
    width: 80%;
    margin: auto;
    gap: 5px;
}

.intro .form .langBtnContainer div {
    width: 100%;
}

.intro .form .langBtnContainer div button {
    width: 100%;
}

.intro .social {
    text-align: center;
}

.intro .social a i{
    margin: 0px 5px;
    color: #FFF;
    cursor: pointer;
    font-size: 32px;
}

.intro .info{
    color:#FFF;
    font-size: 18px;
    width: 90%;
    margin: auto;
    margin-top: 50px;
}
.intro .info div{
    margin-bottom: 15px;
    width: 90%;
}

.intro .info div i {
    margin-right: 15px;
    font-size: 18px;
    color: #FFF;
}

.intro .info .social {
    margin: auto;
}

.intro .info .social i {
    font-size: 40px;
}

.intro .info .phone{
    display: flex;
    align-content: center;
}
.intro .info .phone span{
    display: block;
}


.intro .footer {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translate(-50%);
}

.intro-none {
    display: none !important;
}

.intro-hidden-lang-0 {
    display: block;
    animation: slide-in 0.3s ease-in-out forwards;
}

.intro-hidden-lang-1 {
    display: block;
    animation: slide-in 0.7s ease-in-out forwards;
}

.intro-hidden-lang-2 {
    display: block;
    animation: slide-in 1.1s ease-in-out forwards;
}

.intro-hidden-menu-0 {
    display: block;
    animation: slide-out 0.3s ease-in-out forwards;
}

.intro-hidden-menu-1{
    display: block;
    animation: slide-out 0.7s ease-in-out forwards;
}

.intro-hidden-menu-2{
    display: block;
    animation: slide-out 1.1s ease-in-out forwards;
}


@keyframes slide-in {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
}

@keyframes slide-out {
    from {
      transform: translateX(100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
}
/* ------- intro end ------- */


/* ------- Category Start ------- */

.category {
    width: 100%;
}

.category .head {
    text-align: center;
    position: relative;
    min-height: 170px;

    display: flex;
    justify-content: center;
    align-items: center;
    
}

.category .head img{
    width: 220px;
    height: 60px;
    padding-top: 25px;
}

.category .head .backward {
    position: absolute;
    bottom: 15px;
    left: 20px;
    padding: 2px 3px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 5;
}

.head .language {
    position: absolute;
    top: 25px;
    right: 15px;
    z-index: 9;
}

.head .language i{
    color: #FFF;
    font-size: 26px;
}


.category .info {
    text-align: center;
    padding: 10px 0px;
}

.category .info button {
    margin-top: 15px;
    color: white;
    background-color: #d5d5d540;
    border-radius: 12px;
    border: 1px solid #FFF;
    padding: 3px 15px;
}

.category .info h3{
    display: block;
    font-size: 21px;
    font-weight: 400;
    text-align: center;
    padding: 15px 0px;
    color: white;
    letter-spacing: 1px;
}

.category .social {
    text-align: center;
    font-size: 20px;
    background-color: #ffffff17;
    width: 50%;
    margin: auto;
    padding-top: 10px;
    border-radius: 20px;
}

.category .social a i{
    margin: 0px 10px;
    color: #FFF;
    cursor: pointer;
    font-size: 32px
}

.category .info .social a {
    padding: 4px 10px;
    margin: 2px;
    color: #FFF;
    font-size: 20px;
}

.category .menus {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: space-evenly;
}
.menuItem{
    padding: 8px;
    border: 1px solid #8E661F;
    border-radius: 10px;
    margin: 10px 5px;
    color: #FFF;
    font-weight: bold;
    background-color: transparent;
    font-size: 16px;
}

.category .menus .menuItemActive {
    background-color: #665728;
}

.category .category-list {
    padding: 15px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 15px; 
}

.category .category-item {
    background: white;
    text-align: center;
    height: 140px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: end;
    box-shadow: 0px 2px 5px 2px #0a0a0aa6;
    width: 100%;
    z-index: 2;
    overflow: hidden;
    text-decoration: none;
}

.category .category-item h2 {
    color: #FFF;
    font-size: 18px;
    background-color: #665728bf;
    padding: 0px 5px;
    border-radius: 5px;
}

/* ------- Category end ------- */

/* ------- Menu start ------- */

.menu-items {   
    width: 100%;
    margin-bottom: 120px;
}

.menu-items .head {
    text-align: center;
    position: relative;
}

.menu-items .head img{
    /* width: 260px;
    height: 150px;
    padding-top: 25px; */
}

.backward {
    padding: 2px 3px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}


.menu-items .carousel {
    text-align: center;
    margin: auto;
}

.menu-items .carousel img{
    height: 100% !important;
    width: 100% !important;
    background-size: cover;
    object-fit: cover;
    border-radius: 0px 0px 15px 15px;
    height: 200px !important;
}


.head-action {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    align-items: center;
}

.menu-items .categories-container {
    background-color: #103d2a69;
    position: fixed;
    bottom: 0px;
    top: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    z-index: 7;
    display: none;
}

.categoriesShow {
    display: block !important;
}

.menu-items .categories {
    background-color: #603913;
    position: fixed;
    bottom: 0px;
    z-index: 8;
    height: 80%;
    overflow-y: scroll;
    border-radius: 3rem / 1rem;
    box-shadow: 0px 0px 3px 3px #2f1b07;
}


.menuItem{
    padding: 8px;
    border: 1px solid #8E661F;
    border-radius: 10px;
    margin: 10px 5px;
    color: #FFF;
    font-weight: bold;
    background-color: transparent;
    font-size: 16px;
}

.menuItemActive {
    background-color: #665728;
}


.categories-body-cat {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 15px; 
    overflow-y: scroll;
}

.categories-head {
   margin-top: 25px;
}

.categories-head i {
    cursor: pointer;
    padding: 10px 30px;
}

.categories-head  div {
    display: flex;
    justify-content: space-evenly;
}

.categories-item {
    width: 90%;
    text-align: center;
    text-decoration: none;
    padding: 5px;
}

.categories-item .categories-icon{
    border-radius: 10%;
    margin: 2px auto;
    /* width: 40px;
    height: 35px; */
    overflow: hidden;
}

.categories-item .categories-icon img{
    width: 100%;
    height: 100px;
    margin: auto;
    object-fit: cover;
    border-radius: 5px;
}

.categories-item .categories-name {
    font-weight: 600;
    font-size: 13px;
    padding: 2px;
    display: block;
    color: white;
}

.categories-item .active {
    color: #D77E07;
}

.menu-items .categories .sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
}

.menu-items .subcategories > .item {

    border: 1px solid #103d2a;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 15px;

}

.menu-items .subcategories .item-head {
    background-color: #ffffff17;
    padding: 10px 15px;
    border-radius: 5px;
    color: #ffffff;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}

.menu-items .subcategories .item-body {
    padding: 10px 15px;
    background-color: #286a4e;
    border-radius: 5px;
}

.menu-items .items {
    /* width: 90%; */
    margin: auto;
    margin-bottom: 20px;
    padding: 5px;
}

.head-listview{
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0px;
}

.head-listview .category-name{
    color: rgb(252 252 252);
    font-size: 20px;
    margin-top: 5px;
}

.head-listview .listview{
    display: flex;
    justify-content: center;
}

.head-listview .listview .active{
    color: #D77E07;
}

.head-listview .listview svg{
    margin: 4px 5px;
    color: #FFF;
    cursor: pointer;
    font-size: 32px;
}

.item-order {
    position: absolute;
    background-color: #9d670a;
    color: white !important;
    border-radius: 5px;
    width: 25px;
    text-align: center;
    font-size: 14px !important;
    height: 15px;
}

.menu-items .items .style-list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px 0px;
    padding: 10px;
    border-bottom: 1px solid #1a4d37;
}

.menu-items .items .style-list .side-right {
    width: 33.33333333%;
    text-align: end;
}

.menu-items .items .style-list .side-right .image-loading {
    width: 100px;
    height: 100px;
    overflow: hidden;
    margin: auto;
}

.menu-items .items .style-list .side-right img{
    max-width: 100%;
    height: 100px;
    border: 3px;
    /* box-shadow: 0px 1px 5px #cda45e; */
    border-radius: 8px !important;
    width: 100px;
    object-fit: cover;
}

.menu-items .items .style-list .side-left{
    width: 66.66666667%;
    padding: 0px 10px;
    box-sizing: border-box;
}

.menu-items .items .style-list .side-left h5{
    color: #FFF;
    font-size: 16px;
    margin: 10px;
}

.menu-items .items .style-list .side-left p{
    color: #aeaeae;
    font-size: 13px;
    margin-right: 10px;
}

.menu-items .items .style-list .side-left .price{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: 10px;
    flex-direction: column;
}

.menu-items .items .style-list .side-left .price span{
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
}

.menu-items .items .style-list .side-left .price span span{
    margin: 10px
}



.menu-items .items .style-two {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 15px;
    position: relative;
}

.menu-items .items .style-two .item {
    height: auto;
    margin: auto;
    /* padding: 8px; */
    border-radius: 8px;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.menu-items .items .style-two .item .image-loading {
    width: 100%;
    height: 170px;
    overflow: hidden;
}

.menu-items .items .style-two .item  img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    position: relative;
    z-index: 5;
    box-shadow: 0px 2px 5px 2px #0a0a0aa6;
}


.menu-items .items .style-two .style-two-info {
    position: absolute;
    z-index: 5;
    bottom: -20px;
    width: 70%;
    background-color: #1e714dd9;
    left: 50%;
    transform: translate(-50%);
    padding: 5px;
    border-radius: 8px;
    text-align: start;
}

.style-two-info-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.style-two-info-footer i {
    color: #D77E07;
    font-size: 14px;
}

.info-cart-add i {
    color: #FFF;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #FFF;
    border-radius: 5px;
    padding: 2px 3px;
}

.menu-items .items .style-two  .item h5{
    color: #FFF;
    font-size: 14px;
}

.menu-items .items .style-two  .item .price {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 5px;
    flex-direction: column;
}

.menu-items .items .style-two  .price span{
    color: #FFF;
    font-size: 12px;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 10px;
}

.style-large .item {
    width: 90%;
    height: auto;
    margin: auto;
    /* background-color: #44444461; */
    padding: 8px;
    border-radius: 8px;
    position: relative;
    margin-bottom: 15px;
    height: 200px;
    overflow: hidden;
}

.style-large .item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 5;
    box-shadow: 0px 2px 5px 2px #0a0a0aa6;
}


.style-large .item h5{
    color: #FFF;
    font-size: 14px;
    padding: 2px 10px;
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #00000080;
    border-radius: 15px;
    z-index: 5;
    height: 20px;
}

.style-large .item .price {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    position: absolute;
    bottom: 25px;
    right: 15px;
    z-index: 5;
    height: 20x;
    gap: 5px;
    flex-direction: column;
}

.style-large .item .price span{
    color: #FFF;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #00000080;
    border-radius: 15px;
    padding: 1px 5px;
}

.style-large .item .price span span{
    /*display: block;*/
}

.style-large .item .addToCart {
    position: absolute;
    top: 8px;
    right: 26px;
    /* left: 15px; */
    z-index: 8;
}

.style-large .item .addToCart .addToCartButton {
    width: 30px;
    height: 30px;
    border-radius: 0px 0px 10px 10px;
    background-color: #fff;
    border: none;
    color: #103d2a;
    font-size: 16px;
}

.style-large .item .addToCart .action::before {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    background-color: white;
    transform: rotate(45deg);
    position: absolute;
    top: -4px;
    right: 6px;
    z-index: -1;
    border-radius: 2px;
}

.style-large .item .addToCart .action {
    width: 110px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background: white;
    padding: 2px 5px;
    border-radius: 7px;
    position: relative;
    top: 8px;
    color: #797979;
    display: none;
}

.style-large .item .addToCart .action i {
    /* background-color: #f0f0f0; */
    color: #797979;
    width: 12px;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0px 3px;
    padding: 5px;
    border-radius: 16px;
}

/* ------- Menu end ------- */

/* ------- Loader start ------- */

.loader-container {
    margin: auto;
    width: 100%;
    text-align: center;
    margin-top: 60px;
}

.loader {
    width: 35px;
    height: 35px;
    border: 5px solid #FFF;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
    } 

  /* ------- Loader end ------- */

  .swal2-container.swal2-center > .swal2-popup {
    background-color: #103d2a;
  }

  .swal2-styled.swal2-confirm {
    background-color: #ffffff !important;
    color: #103d2a !important;
  }
  
   .swal2-show {
    animation: swal2-show 1s !important; 
  }


  .cartButton {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    border: none;
    position: relative;
    background-color: #fff;
    box-shadow: 0px 0px 1px 1px #373636;
    color: #2b2929;
    font-weight: bold;
    font-size: 25px;
  }

  .cartButton i {
    color: #103d2a;
  }

  .cartButton .cartQty {
    position: absolute;
    right: -8%;
    top: -10px;
    background-color: #8E661F;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 14px;
  }

  /* .cartButton:hover {
    transform: rotate(90deg);
  } */

  .cart {
    background-color: #fafafa;
    position: fixed;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    width: 500px;
    z-index: 10;
    display: none;
  }

  @media only screen and (max-width: 1280px) {
        .cart{
        max-width: 100%;
        }
    }

    .cart-show {
        display: block;
    }

    .cart-head {
        color: #262626;
        font-weight: bold;
        padding: 12px;
        /* box-shadow: 0px 0px 1px 1px #EEE; */
        border: none;
        display: flex;
        justify-content: end;
        font-size: 20px;
    }

    .cart-head .cart-head-close i{
        cursor: pointer;
        /* background-color: #103d2a; */
        width: 20px;
        height: 20px;
        padding: 4px;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        align-items: center;
        color: #2f2f2f;
    }

    .cart-body{
        padding: 10px;
        height: calc(100% - 175px);
        overflow: scroll;
    }

    .cart-body p {
        text-align: center;
        color: #737373;
    }

    .cart-body .cart-item {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 15px;
        padding: 10px;
        border-radius: 6px;
        box-shadow: 0px 0px 1px 1px #F2F2F2;
        background-color: white;
    }

    .cart-body .cart-item .img {
        width: 70px;
        height: 70px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0px 0px 1px 1px #BDBDBD;
    }

    .cart-body .cart-item .info {
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .cart-body .cart-item .action {
        width: 25%;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
    }

    .cart-body .cart-item .action i {
        background-color: #fafafa;
        color: #262626;
        width: 18px;
        height: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0px 3px;
        padding: 5px;
        border-radius: 16px;
    }

    .cart-body .cart-item .img img{
        width: 100%;
    }

    .cart-footer {
        position: fixed;
        bottom: 0px;
        background-color: #FFF;
        width: 500px;
        height: 125px;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
        box-shadow: 0px 0px 1px 1px #F2F2F2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .cart-footer  .info {
        padding-top: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        color: #737373;
        font-weight: bold;
        width: 85%;
    }

    .cart-footer .btn {
        background-color: #103d2a;
        width: 60%;
        margin-top: 10px;
        padding: 3px;
        border-radius: 10px;
        text-align: center;
        font-size: 18px;
        color: #fefbf9;
        box-shadow: 0px 0px 1px 1px #F2F2F2;
        font-weight: bold;
    }

    .cart-footer .btn i{
        margin: 0px 8px;
    }

    @media only screen and (max-width: 1280px) {
        .cart-footer {
            max-width: 100%;
        }
    }
    
    .flex-1{
        /* flex: 1; */
        width: 100%;
    }
    

    
.feedback {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feedback h1{
    text-align: center;
    color: #EEE;
    margin: 10px auto;
}

.feedback .feedback-item {
    margin: 10px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feedback .feedback-item .title {
    margin-bottom: 5px;
    color: #EEE;
    font-size: 18px;
}

.feedback .feedback-item textarea, input {
    background-color: #EEE;
    border: none;
    outline: none;
    width: 320px;
    border-radius: 2px;
    color: #16142d;
    padding: 10px;
    margin-top: 10px;
    font-size: 18px;
    box-shadow: 0px 0px 2px 1px #643019;

}

.feedback .feedback-item textarea {
    height: 100px;
}

.feedback .feedback-item input {
    height: 20px;
}

.feedback .feedback-item button {
    background-color: #FFF;
    border: none;
    outline: none;
    width: 180px;
    border-radius: 5px;
    color: #103d2a;
    padding: 10px;
    height: 40px;
    font-weight: bold;
    margin: 15px auto;
    cursor: pointer;
    font-size: 18px;
}

.feedback-success-message {

    margin: 50px auto;
    padding: 15px;
    text-align: center;
    color: white;
    font-size: 20px;

}

.head-feedback {
    display: flex;
    justify-content: space-between;
}

.head-feedback .backward {
    padding: 25px;
    cursor: pointer;
    width: 40px;
    height: 40px;
}


.head-feedback .lang {
    display: flex;
    gap: 10px;
    justify-content: end;
    align-items: center;
    margin-right: 35px;
}

.head-feedback .lang div {
    color: #EEE;
    cursor: pointer;
    font-size: 18px;
}

.head-feedback .lang div:nth-child(2n) {
    border-left: 1px solid #AC9874;
    border-right: 1px solid #AC9874;
    padding: 0 15px;
    margin: auto 15px;
  }

.head-feedback .lang .active {
    color: #D77E07;
}

.langModal {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    background-color: #000000db;
    z-index: 80;
    display: none;

}

.langModalContainer {

    width: 80%;
    height: 260px;
    background-color: #103d2a;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 81;
    border-radius: 5px;
    
}

.langModalShow {
    display: block;
}

.langModalContainer .langModalHead {
    padding: 10px 20px;
    display: flex;
    justify-content: end;
}

.langModalContainer .langModalHead i {
    cursor: pointer;
}

.langModalContainer .langModalBody {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.langModalContainer .langModalBody button {
    width: 100%;
    background-color: transparent;
    padding: 15px;
    font-size: 20px;
    color: #FFF;
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #0b2b1d;
}

.categoryBtn {
    position: fixed;
    bottom: 5%;
    right: 15px;
    z-index: 6;
    width: 45px;
    height: 45px;
    border-radius: 15px;
    border: none;
    background-color: #fff;
    box-shadow: 0px 0px 1px 1px #373636;
    color: #2b2929;
    font-weight: bold;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-list-head {
    color: white;
  text-align: center;
  margin: 10px auto;
}


@keyframes items-slide-in {
    from {
      transform: translateX(-100%);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
}

@keyframes items-slide-y {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
}


  @keyframes scale-up-center {
    0% {
      -webkit-transform: scale(0.5);
              transform: scale(0.5);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  
  @keyframes tracking-in-expand {
    0% {
      letter-spacing: -0.5em;
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      opacity: 1;
    }
  }
  

  .MuiPaper-root {
    background-color: #0b2b1d !important;
  }

  .commingsoon {
    color: #fdfdfc;
    text-align: center;
    margin: 50px auto;
    font-size: larger;
    font-weight: bold;
    font-size: 22px;
    animation: tracking-in-expand-fwd 0.5s cubic-bezier(0.215, 0.610, 0.355, 1.000) 1s both;
  }

  @keyframes tracking-in-expand-fwd {
    0% {
      letter-spacing: -0.5em;
      -webkit-transform: translateZ(-700px);
              transform: translateZ(-700px);
      opacity: 0;
    }
    40% {
      opacity: 0.6;
    }
    100% {
      -webkit-transform: translateZ(0);
              transform: translateZ(0);
      opacity: 1;
    }
  }
  