/**
* Template Name: Yummy
* Updated: Jan 09 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/yummy-bootstrap-restaurant-website-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Set main reusable colors and fonts using CSS variables
# Learn more about CSS variables at https://developer.mozilla.org/en-US/docs/Web/CSS/Using_CSS_custom_properties
--------------------------------------------------------------*/
/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900&display=swap');

@import url('https://fonts.googleapis.com/css?family=Open+Sans');


:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Amatic SC", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

/* Colors */
:root {
  --color-default: #212529;
  --color-primary:#5D1CAA;
  --color-secondary: #37373f;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family:'Roboto', sans-serif;;
  color: var(--color-default);
}

a{
  color: var(--color-primary);
  text-decoration: none;
  cursor: pointer !important;
}
a h1,h2,h3,h4,h5,h6{
  cursor: pointer !important;
}

a:hover {
  color:#5D1CAA;
  text-decoration: none;
}



/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  /* overflow: hidden; */
  padding: 61px 0;
}

.section-bg {
  background-color: #eee;
}

.section-header {
  text-align: center;
  padding-bottom: 30px;
}

.section-header h2 {
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 400;
  margin: 0;
  padding: 0;
  color: #7f7f90;
  text-transform: uppercase;
  font-family: var(--font-default);
}

.section-header p {
  margin: 0;
  font-size: 48px;
  font-weight: 400;
  font-family: var(--font-primary);
}

.section-header p span {
  color: var(--color-primary);
}

@media (max-width: 575px) {
  .boxx {
   justify-content: center;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: rgba(55, 55, 63, 0.05);
  margin-top: 90px;
}

@media (max-width: 575px) {
  .breadcrumbs {
    margin-top: 70px;
  }
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #676775;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h2 {
    margin-bottom: 10px;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background:#5D1CAA;
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--color-primary);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: #FAFAFA;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid #e6e3e3;
  width: 100%;
}
.header-div{
  display: flex;
  justify-content: space-between;
  margin: 0px;
  width: -webkit-fill-available;
  padding:0 3rem;
}
@media (max-width: 575px) {
  .header {
    height: 70px;
  }
}

.header.sticked {
  border-color: #fff;
  border-color: #eee;
}

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.header .logo h1 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin: 0;
  font-family: var(--font-secondary);
}

.header .logo h1 span {
  color: var(--color-primary);
}

.header .btn-book-a-table,
.header .btn-book-a-table:focus {
  font-size: 14px;
  color: #fff;
  background: #5D1CAA;
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-book-a-table{
  border: 1px solid #5D1CAA;
  border-radius: 10px;
  width: 164px;
  height: 48px;
  padding: 10px 20px;
  text-align: center;
}
.btn:hover{
  color: #5D1CAA;
  border: 1px solid #5D1CAA;
  background-color: #ffffff !important;
}


/* .header .btn-book-a-table:hover,
.header .btn-book-a-table:focus:hover {
  color:  #5D1CAA;
  background: #fff;
} */

section {
  scroll-margin-top: 90px;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar {
    padding: 0;
  }

  .navbar ul {
    padding: 4px;
    display: flex;
    list-style: none;
    align-items: center;
  
  }

  .navbar li {
    position: relative;
    top: 0.6rem;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  /* .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: #000;
  } */

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 600;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {

  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    border-left: 1px solid #666;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.9);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-secondary);
    border-bottom: 2px solid rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    color: #7f7f90;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar li:hover>a {
    color: #000;
  }

  .navbar .active,
  .navbar .active:focus {
    color: #000;
    border-color: var(--color-primary);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #eee;
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: var(--color-secondary);
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 20px;
  }

  .mobile-nav-hide {
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-img {
  min-height: 500px;
}

.about h3 {
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 30px;
  font-family: var(--font-secondary);
}

.about .call-us {
  left: 10%;
  right: 10%;
  bottom: 10%;
  background-color: #fff;
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
}

.about .call-us h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--font-default);
}

.about .call-us p {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--color-primary);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(var(--color-primary) 50%, rgba(206, 18, 18, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;
}

.about .play-btn:before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  animation-delay: 0s;
  animation: pulsate-btn 2s;
  animation-direction: forwards;
  animation-iteration-count: infinite;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(206, 18, 18, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}

.about .play-btn:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.about .play-btn:hover:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  animation: none;
  border-radius: 0;
}

.about .play-btn:hover:after {
  border-left: 15px solid var(--color-primary);
  transform: scale(20);
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }

  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .why-box {
  padding: 30px;
  background: var(--color-primary);
  color: #fff;
}

.why-us .why-box h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .why-box p {
  margin-bottom: 30px;
}

.why-us .why-box .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.3);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .why-box .more-btn i {
  font-size: 14px;
}

.why-us .why-box .more-btn:hover {
  color: var(--color-primary);
  background: #fff;
}

.why-us .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(55, 55, 63, 0.1);
  transition: 0.3s;
}

.why-us .icon-box i {
  color: var(--color-primary);
  margin-bottom: 30px;
  font-size: 32px;
  margin-bottom: 30px;
  background: rgba(206, 18, 18, 0.1);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}

.why-us .icon-box h4 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 30px 0;
  font-family: var(--font-secondary);
}

.why-us .icon-box p {
  font-size: 15px;
  color: #6c757d;
}

@media (min-width: 1200px) {
  .why-us .icon-box:hover {
    transform: scale(1.1);
  }
}

/*--------------------------------------------------------------
# Stats Counter Section
--------------------------------------------------------------*/
.stats-counter {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/stats-bg.jpg") center center;
  background-size: cover;
  padding: 100px 0;
}

@media (min-width: 1365px) {
  .stats-counter {
    background-attachment: fixed;
  }
}

.stats-counter .stats-item {
  padding: 30px;
  width: 100%;
}

.stats-counter .stats-item span {
  font-size: 48px;
  display: block;
  color: #fff;
  font-weight: 700;
}

.stats-counter .stats-item p {
  padding: 0;
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Menu Section
--------------------------------------------------------------*/
.menu .nav-tabs {
  border: 0;
}

.menu .nav-link {
  margin: 0 10px;
  padding: 10px 5px;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 2px solid #b6b6bf;
}

@media (max-width: 575px) {
  .menu .nav-link {
    margin: 0 10px;
    padding: 10px 0;
  }
}

.menu .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.menu .nav-link h4 {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  font-family: var(--font-secondary);
}

@media (max-width: 575px) {
  .menu .nav-link h4 {
    font-size: 16px;
  }
}

.menu .nav-link:hover {
  color: var(--color-primary);
}

.menu .nav-link.active {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.menu .tab-content .tab-header {
  padding: 30px 0;
}

.menu .tab-content .tab-header p {
  font-size: 14px;
  text-transform: uppercase;
  color: #676775;
  margin-bottom: 0;
}

.menu .tab-content .tab-header h3 {
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
}

.menu .tab-content .menu-item {
  -moz-text-align-last: center;
  text-align-last: center;
}

.menu .tab-content .menu-item .menu-img {
  padding: 0 60px;
  margin-bottom: 15px;
}

.menu .tab-content .menu-item h4 {
  font-size: 22px;
  font-weight: 500;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-weight: 30px;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .ingredients {
  font-family: var(--font-secondary);
  color: #8d8d9b;
  margin-bottom: 5px;
}

.menu .tab-content .menu-item .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .section-header {
  margin-bottom: 40px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item .testimonial-content {
  border-left: 3px solid var(--color-primary);
  padding-left: 30px;
}

.testimonials .testimonial-item .testimonial-img {
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--color-default);
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #6c757d;
  margin: 0 0 10px 0;
  font-family: var(--font-secondary);
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: #f05656;
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Events Section
--------------------------------------------------------------*/
.events .container-fluid {
  padding: 0;
}

.events .event-item {
  background-size: cover;
  background-position: cente;
  min-height: 600px;
  padding: 30px;
}

.hero .btn-book-a-table:hover {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 28px var(--color-primary);
}

@media (max-width: 575px) {
  .events .event-item {
    min-height: 500px;
  }
}

.events .event-item:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.events .event-item h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
  position: relative;
}

.events .event-item .price {
  color: #fff;
  border-bottom: 2px solid var(--color-primary);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
}

.events .event-item .description {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

@media (min-width: 1200px) {
  .events .swiper-slide-active+.swiper-slide {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 1;
  }
}

.events .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.events .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #d1d1d7;
  opacity: 1;
}

.events .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Chefs Section
--------------------------------------------------------------*/
.chefs .chef-member {
  overflow: hidden;
  text-align: center;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.08);
  transition: 0.3s;
}

.chefs .chef-member .member-img {
  position: relative;
  overflow: hidden;
}

.chefs .chef-member .member-img:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: url(../img/team-shape.svg) no-repeat center bottom;
  background-size: contain;
  z-index: 1;
}

.chefs .chef-member .social {
  position: absolute;
  right: -100%;
  top: 30px;
  opacity: 0;
  border-radius: 4px;
  transition: 0.5s;
  background: rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.chefs .chef-member .social a {
  transition: color 0.3s;
  color: rgba(55, 55, 63, 0.4);
  margin: 15px 12px;
  display: block;
  line-height: 0;
  text-align: center;
}

.chefs .chef-member .social a:hover {
  color: rgba(55, 55, 63, 0.9);
}

.chefs .chef-member .social i {
  font-size: 18px;
}

.chefs .chef-member .member-info {
  padding: 10px 15px 20px 15px;
}

.chefs .chef-member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: var(--color-secondary);
}

.chefs .chef-member .member-info span {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: rgba(33, 37, 41, 0.4);
}

.chefs .chef-member .member-info p {
  font-style: italic;
  font-size: 14px;
  padding-top: 15px;
  line-height: 26px;
  color: rgba(33, 37, 41, 0.7);
}

.chefs .chef-member:hover {
  transform: scale(1.08);
  box-shadow: 0px 0 30px rgba(55, 55, 63, 0.15);
}

.chefs .chef-member:hover .social {
  right: 8px;
  opacity: 1;
}

/*--------------------------------------------------------------
# Book A Table Section
--------------------------------------------------------------*/
.book-a-table .reservation-img {
  min-height: 500px;
  background-size: cover;
  background-position: center;
}

.book-a-table .reservation-form-bg {
  background: rgba(55, 55, 63, 0.04);
}

.book-a-table .php-email-form {
  padding: 40px;
}

@media (max-width: 575px) {
  .book-a-table .php-email-form {
    padding: 20px;
  }
}

.book-a-table .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.book-a-table .php-email-form h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}

.book-a-table .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.book-a-table .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.book-a-table .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.book-a-table .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.book-a-table .php-email-form input,
.book-a-table .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.book-a-table .php-email-form input:focus,
.book-a-table .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.book-a-table .php-email-form input {
  padding: 12px 15px;
}

.book-a-table .php-email-form textarea {
  padding: 12px 15px;
}

.book-a-table .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 14px 60px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.book-a-table .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #d1d1d7;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 40px 0;
  }

  .gallery .swiper-slide-active {
    border: 6px solid var(--color-primary);
    padding: 4px;
    background: #fff;
    z-index: 1;
    transform: scale(1.2);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: #f4f4f4;
  padding: 30px;
  height: 100%;
}

.contact .info-item .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: #fff;
  background: var(--color-primary);
  border-radius: 50%;
  margin-right: 15px;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.contact .info-item p {
  padding: 0;
  margin: 0;
  line-height: 24px;
  font-size: 14px;
}

.contact .info-item .social-links a {
  font-size: 24px;
  display: inline-block;
  color: rgba(55, 55, 63, 0.7);
  line-height: 1;
  margin: 4px 6px 0 0;
  transition: 0.3s;
}

.contact .info-item .social-links a:hover {
  color: var(--color-primary);
}

.contact .php-email-form {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 48px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-primary);
  border: 0;
  padding: 12px 40px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ec2727;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  background-size: cover;
  position: relative;
  min-height: 60vh;
  padding: 160px 0 60px 0;
}

.hero h2 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-family: var(--font-primary);
}

.hero h2 span {
  color: var(--color-primary);
}

.hero p {
  color: #4f4f5a;
  font-weight: 400;
  margin-bottom: 30px;
}





.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--font-secondary);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--color-primary);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--color-primary);
}

.hero .btn-watch-video:hover i {
  color: rgba(206, 18, 18, 0.8);
}

@media (max-width: 640px) {
  .hero h2 {
    font-size: 36px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  font-size: 14px;
  background-color: #1f1f24;
  padding: 50px 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer .icon {
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  color: #fff;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.6);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: #fff;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #fff;
  border-color: #fff;
}

.footer .copyright {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .credits {
  padding-top: 4px;
  text-align: center;
  font-size: 13px;
}

.footer .credits a {
  color: #fff;
}

.register{
  padding: 11px;
  color: #5D1CAA;
  border: 1px solid #5D1CAA;
  border-radius: 16px;
}
.custom-button {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 10px;
  border-radius: 5px;
  transition: 0.5s;
  color:black;
  background: #EEE0FF;
  text-decoration: none;
  justify-content: space-between;
  display: flex;
  min-width: 9rem;
}

/* Style for the dropdown container */
.dropdown {
  position: relative;
  display: inline-block;
}
ul .dropdown{
padding-right: 0.5rem;
  width: -webkit-fill-available;
}
.sidebar ul{
    padding-left: 1rem ;
}
.sidebar li a {
  padding:0 0.5rem;
}
.dropdown-menu li{
  padding: 0.8rem;
}


/* Style for the dropdown content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 91px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Style for the dropdown links */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  display: block;
  text-decoration: none;
}

/* Show the dropdown content on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
.box-style{
  display: flex;
  border:1px solid rgb(143, 143, 143);
  border-radius: 22px;
  width:46px;
  justify-content: center;
  padding: 5px;

}
.box-style h6{
  margin: 0 !important;
  justify-content: center !important;
}

.border-success{
  height: 15rem !important;
  width: 20rem !important;
}

.card-title{
  color: black;
  font-size: 14px;

}
.card-text{
  font-size: 20px;
  font-weight: 700;
}
.border-success h6{
  margin: 0 !important;
}
.border-success {
  border: 1px solid  rgb(238, 236, 236)!important;
  border-radius: 8px;
  /* width: 198px;
  height: 127px; */
}
.card-footer{
  padding: 12px;
}

.text-success{
  gap:12px !important;
}
@media (max-width: 768px) {
  .col-lg-4 new {
    flex-direction: column;
  }
}
.abc{
  border:1px solid rgb(216, 216, 216);
  background-color:#FAFAFA;
  padding:8px;
  display: flex;
}
.abc button{
  border: none;
  color: #5D1CAA;
  font-weight: 700;
  background-color:#FAFAFA ;
  
}

.point{
  display:flex;
  position: absolute;
  background-color: hsla(0, 0%, 100%, 0);
 
  right: 12px;
  top:20px;
  width: fit-content;
  font-size: 12px;
  border:none;
}
.container {
  position: relative;
  margin-bottom: 15px;
}
.btnstyle1{
  background-color: #5D1CAA;
  border-radius: 10px;
  color:white;
  border: none;
  padding: 10px 37px;

}
.button-style1{
  background-color: #5D1CAA;
  border-radius: 10px;
  color:white;
  border: none;
  padding: 10px 30px;
}
.pencil{
  height: 1rem;
  width: 1rem;
  margin:1rem;
  cursor: pointer;
}
table {
  width: 100%;
  border-collapse: collapse;
}

.chevron-down{
  margin-top: 6px;
    height: 2rem;
}
img{
  margin-top: 3px;
  margin-bottom: 3px;
}
.add{
  border:1px solid rgb(216, 216, 216);
  /* background-color:#FAFAFA; */
  display: flex;
}
.add-button {
  padding: 1.5rem;
  color: #000; /* Default color */
  border: none; /* Removing default border */
  background-color: transparent; /* Making background transparent */
  cursor: pointer; /* Changing cursor to pointer on hover */
  transition: color 0.3s; /* Adding transition effect */
}

/* Styling for hover state */
.add-button:hover {
  background-color:#F3F3F3;
  border-bottom: 2px solid #5D1CAA; /* Changing color to grey on hover */
}

/* Styling for active state */
.active-button {
  background-color:#F3F3F3;
  border-bottom: 2px solid #5D1CAA; /* Changing color to grey on hover */

}

.addbox{
  border:1px solid rgb(216, 216, 216);
  /* background-color:#FAFAFA; */
  display: flex;
}
.add-button1{
  color: #000; /* Default color */
  border: none; /* Removing default border */
  background-color: transparent; /* Making background transparent */
  cursor: pointer; /* Changing cursor to pointer on hover */
  transition: color 0.3s; /* Adding transition effect */
}

/* Styling for hover state */
.add-button1:hover {
  background-color:#F3F3F3; /* Changing color to grey on hover */
}

/* Styling for active state */
.add-button1:active {
  background-color:#F3F3F3;
}
.oval{
  background-color: #EEEEEE;
  border: none;
    border-radius: 33px;
    display: flex;
    padding: 8px;
    gap: 1rem;
}
.oval:hover{
  background-color: white;
  color: #5D1CAA;

}
.active-oval {
  background-color: white;
  color: #5D1CAA;
  border: none;
    border-radius: 33px;
    display: flex;
    padding: 8px;
    gap: 1rem;
}
.grid-container {
  display: grid;
  grid-template-columns: auto auto auto auto;
 
}
.grid-item {
  /* padding: 10px; */
  font-size: 30px;
}
.input-modal{
  border-radius: 10px 0px 0px 10px;
  height: 48px;
  width: 598px;
  border: 1px solid rgb(219, 219, 219);
  padding: 10px;
}
.btn {
  padding: 10px 15px;
  background-color: #5D1CAA;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.btnz {
  padding: 10px 15px;
  border: 1px solid #5D1CAA;
  background-color: white;
  color: #5D1CAA;
  border-radius: 5px;
  cursor: pointer;
}
.sidebaraddproduct{
  width: 300px;
  padding: 20px;
  border-right: 1px solid gainsboro;
}
.customs-box{
  top:7rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  width: 100%;
}
.text-box{
  background-color: #F3EAFF;
  border-radius: 5px;
  border:none;
}
.file-input-button{
  display: flex;
  padding: 5px;
  align-items: center;
  border: 2px dotted#D0D5DD;
  border-radius: 8px;
  cursor: pointer;
  width: 105px;
  align-items: center;
  justify-content: center;
}
.file-input-container {
  position: relative;
  display: inline-block;
}
.file-input-icon {
width: 16px;
}
.file-input-hidden {
position: absolute;
top: 0;
left: 0;
opacity: 0;
width: 100%;
height: 100%;
cursor: pointer;
}
.file-input-text{
font-size: 13px;
font-weight: 400;
padding: 5px;
}
.paracolor{
color: #787878;
font-size: 13px;
}
.b-model{
  width: 148px;
  height: 32px;
  border:1px solid #5D1CAA;
  border-radius: 10px;
  padding: 5px;
  background-color: #fff;
  color:#5D1CAA;
}

.navbarnav1 {
  margin-bottom: 0 !important;
}
@media (min-width: 1280px) {
.navbar1{
  padding: 0;
  background: #FAFAFA;
  border-bottom: 1px solid #DCDCDE;
}
.navbarnav1{
  display: flex;
  list-style: none;
  align-items: center;
  gap: 6rem;
 
}
.navbar1 li {
  position: relative;
  padding: 10px;
}
.navbarnav1 .nav-item {
  position: relative;
  height: -webkit-fill-available;
}

.navbarnav1 :hover {
  background: #FFFFFF;

}
 .active-nav {
  background: #FFFFFF;
  border-bottom: #5D1CAA;

}

.navbarnav1 .nav-item:hover::after {
  background: #FFFFFF;
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px; /* Adjust this value to set the distance between the text and the underline */
  width: 100%;
  margin: 0 auto;
  border-bottom: 2px solid #5D1CAA; /* Change #000 to the color you want for the underline */
}

.navbar1>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 28px;
}
.navbar1 a,
.navbar1 a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px;
  font-family: var(--font-secondary);
  font-size: 14px;
  font-weight: 600;
  color: #111111;
  white-space: nowrap;
  transition: 0.3s;
  position: relative;
  text-decoration: none;
  margin: 1rem;
}

.navbar1 a i,
.navbar1 a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar1>ul>li>a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: var(--color-primary);
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar1 a:hover:before,
.navbar1 li:hover>a:before,
.navbar1 .active:before {
  visibility: visible;
  width: 100%;
}

.navbar1 a:hover,
.navbar1 .active,
.navbar1 .active:focus,
.navbar1 li:hover>a {
  color: #000;
}

.navbar1 .dropdown ul {
  display: block;
  position: absolute;
  left: 28px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar1 .dropdown ul li {
  min-width: 200px;
}


.navbar1 .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar1 .dropdown ul a i {
  font-size: 12px;
}

.navbar1 .dropdown ul a:hover,
.navbar1 .dropdown ul .active:hover,
.navbar1 .dropdown ul li:hover>a {
  color: var(--color-primary);
}

.navbar1 .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar1 .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar1 .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}
}

.abc1{
  background-color:#FAFAFA;
  padding:8px;
  display: flex;
  gap: 1rem;
  width: 100%;
}
.abc1 h5{
  font-size: 15px;
  font-weight: 700;
}
.right-button{
  position: absolute;
  transform: translateY(58%);
  right: 30px;
  /* z-index: 2; */
  background-color: transparent; 
  border: none; 
  padding: 0;
  font-weight: 600;
  font-size: 12px;
}
.right-button1{
  position: absolute;
  transform: translateY(98%);
  left: 514px;
  z-index: 2;
  background-color: transparent; 
  border: none; 
  padding: 0;
  font-weight: 600;
  font-size: 12px;
}
.abc1 button{
  border: none;
  color: #5D1CAA;
  font-weight: 700;
  background-color:transparent;
  
}

.bordercontent {
  /* position: absolute; */
  display: grid;
  gap: 1rem;
  right: 20px;
  /* margin-bottom: 15px; */
}
.button-styles1{
  /* width: 178px;
  height: 48px; */
  background-color: #5D1CAA;
  border-radius: 10px;
  color:white;
  border: none;
  padding: 14px 30px;
}

.trendscontent{
  padding: 20px;
  margin-top: 6rem;
  display: grid;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mainbox-style1{
  width: 150px;
  margin-bottom: 20px;
  background-color: #F0E5FF;
  border:1px solid #5D1CAA;
  color:#5D1CAA;
  border-radius: 22px;
}
.mainbox-style1 h6{
 text-align: center;
}
.box-style1{
  width: 180px;
  margin-bottom: 20px;
  border-radius: 22px;
  border:1px solid;
}
.box-style2{
  /* width: 70px; */
  margin-bottom: 20px;
  border-radius: 22px;
  border:1px solid;
}
.box-style2 h6{
  text-align: center;
}
.box-style1 h6{
  text-align: center;
}
.lastboxstyle{
  width: 110px;
}
.trendssection{
  background: #FAFAFA;
  border-radius: 10px;
  padding: 20px;
}

/* ::selection {
  background-color: var(--primary-color);
  color: #fff;
} */

body.dark {
  --body-color: #18191a;
  --sidebar-color: #242526;
  --primary-color: #3a3b3c;
  --primary-color-light: #3a3b3c;
  --toggle-color: #fff;
  --text-color: #ccc;
}

/* ===== Sidebar ===== */
.sidebar {
  position: fixed;
  top: 7rem;
  left: 0;
  height: 100%;
  width: 206px;
  padding: 10px 0px;
  background: var(--sidebar-color);
  transition: width 0.5s ease;
  z-index: 100;
  border-right: 1px solid #DCDCDE;
  opacity: 1;
  background: #FAFAFA;
}
.sidebar.close {
  width: 66px;
}
.close:hover {
  opacity: 1;
}

/* ===== Reusable code - Here ===== */
.sidebar li {
  /* height: 50px; */
  list-style: none;
  display: flex;
  align-items: center!important;
  margin-top: 0.5rem;
  /* margin-left: 1rem; */
}

.sidebar header .image,
.sidebar .sidebaricon {
  min-width: 25px;
  border-radius: 6px;
}

.sidebar .sidebaricon {
  min-width: 25px;
  border-radius: 6px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.sidebar .text,
.sidebar .sidebaricon {
 
  transition: var(--tran-03);
}

.sidebar .text {
  padding: 12px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 1;
  left: 1rem !important;
}
.sidebar.close .text {
  opacity: 0;
}
.sidebar.close .dropdown-menu{
  display: none;
}
.dropdown-menu{
  right: 0;
  left:0;
  width:19rem;
}
/* =========================== */

.sidebar header {
  position: relative;
}

.sidebar header .image-text {
  display: flex;
  align-items: center;
}
.sidebar header .logo-text {
  display: flex;
  flex-direction: column;
}
header .image-text .name {
  margin-top: 2px;
  font-size: 18px;
  font-weight: 600;
}

header .image-text .profession {
  font-size: 16px;
  margin-top: -2px;
  display: block;
}

.sidebar header .image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar header .image img {
  width: 40px;
  border-radius: 6px;
}

.sidebar header .toggle {
  position: absolute;
  top: 50%;
  left: 2rem;
  /* right: 29px; */
  /* transform: translateY(-50%) rotate(180deg); */
  height: 25px;
  width: 25px;
  /* background-color: var(--primary-color); */
  color: var(--sidebar-color);
  /* border-radius: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: var(--tran-05);
}

body.dark .sidebar header .toggle {
  color: var(--text-color);
}

/* .sidebar.close .toggle {
  transform: translateY(-50%) rotate(0deg);
} */

.sidebar .menu {
  margin-top: 0px;
}

.sidebar li.search-box {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  cursor: pointer;
  transition: var(--tran-05);
}

.sidebar li.search-box input {
  height: 100%;
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--primary-color-light);
  color: var(--text-color);
  border-radius: 6px;
  font-size: 17px;
  font-weight: 500;
  transition: var(--tran-05);
}
.sidebar li a {
  list-style: none;
  /* height: 100%; */
  background-color: transparent;
  display: flex;
  align-items: center;
  /* height: 100%;
  width: 100%; */
  /* margin-left: 1rem; */
  border-radius: 6px;
  text-decoration: none;
  transition: var(--tran-03);
}

.sidebar li a:hover {
  background-color: #3a3b3c00;
}

.sidebar li a:hover .sidebaricon,
.sidebar li a:hover .text {
  color: var(--sidebar-color);
  text-align: center;
  align-items: center;
  justify-content: center;
  /* margin-left: 1rem; */
}
body.dark .sidebar li a:hover .sidebaricon,
body.dark .sidebar li a:hover .text {
  color: var(--text-color);
}

.sidebar .menu-bar {
  height: calc(100% - 55px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: scroll;
}
.menu-bar::-webkit-scrollbar {
  display: none;
}
.sidebar .menu-bar .mode {
  border-radius: 6px;
  background-color: var(--primary-color-light);
  position: relative;
  transition: var(--tran-05);
}
.sidebar .nav-text{
  color: #000;
}

.menu-bar .mode .sun-moon {
  height: 50px;
  width: 60px;
}

.mode .sun-moon i {
  position: absolute;
}
.mode .sun-moon i.sun {
  opacity: 0;
}
body.dark .mode .sun-moon i.sun {
  opacity: 1;
}
body.dark .mode .sun-moon i.moon {
  opacity: 0;
}

.menu-bar .bottom-content .toggle-switch {
  position: absolute;
  right: 0;
  height: 100%;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  cursor: pointer;
}
.toggle-switch .switch {
  position: relative;
  height: 22px;
  width: 40px;
  border-radius: 25px;
  background-color: var(--toggle-color);
  transition: var(--tran-05);
}

.switch::before {
  content: "";
  position: absolute;
  height: 15px;
  width: 15px;
  border-radius: 50%;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  background-color: var(--sidebar-color);
  transition: var(--tran-04);
}

body.dark .switch::before {
  left: 20px;
}

.home {
  position: absolute;
  top: 0;
  top: 0;
  left: 200px;
  height: 100vh;
  width: calc(100% - 200px);
  background-color:#ffff;
  transition: var(--tran-05);
}
.home .text {
  font-size: 30px;
  font-weight: 500;
  color: var(--text-color);
  padding: 12px 60px;
}

.sidebar.close ~ .home {
  left: 66px;
  height: 100vh;
  width: calc(100% - 66px);
}


body.dark .home .text {
  color: var(--text-color);
}
.approvebutton{
  background-color: #C3E6CD!important;
  border-radius: 20px !important;
 
}
.approvebutton:hover{
  background-color: #C3E6CD !important;
  border-radius: 20px !important;
 
}
.rejectbutton{
  background-color: #FFEDE6 !important;
  border-radius: 20px !important;
}
.rejectbutton:hover{
  background-color: #FFEDE6 !important;
  border-radius: 20px !important;
}
.draftbtn{
  background-color: #EFE1FF;
  border-radius: 20px;
}
.draftbtn:hover{
  background-color: #EFE1FF;
  border-radius: 20px;
}
.listspan{
  display: grid;
  font-size: 12px;
}
.abc4{
  border:1px solid rgb(216, 216, 216);
  background-color:#FAFAFA;
  padding:8px;
  display: flex;
}
.abc4 button{
  border: none;
  font-weight: 700;
  /* background-color:#FAFAFA ; */
  
}
.buttonssstyles{
  border-radius: 5px;
  border: 1px solid #5D1CAA;
  padding: 10px;
  color: #5D1CAA;

}

.tablebtn1{
  background-color: #DBBDFF;
  color: #000;

}
.tablebtn2{
  background-color: #298E03;
}
.btncta{
  border: 1px solid #5D1CAA;
  background-color: #ffff;
  color: #5D1CAA;
}
.form-switch{
  display: flex;
  padding-left: 1em !important;
  margin-top: 2rem;
}
.form-switch label{
  display: inline-block;
}

.form-switch-toggle:checked {
margin-top: 0.6rem;
font-size: 20px;
margin-left: 1rem;
background-color:#5D1CAA; /* Set the background color when checked */
border: 1px solid #5D1CAA; /* Optional: add a border to the checked checkbox for consistency */
}
.img-head{
  margin-top: 2rem;
} 
.headingbg th{
  background: #EEEEEE;
}
.inputfieldsearch{
  padding: 1rem;
  border-radius: 6px;
  border:1px solid #d1d1d1;
  width: 30rem;
  font-size: 13px;
  color: #555650;
}
.active-link {
  border-bottom: 1px solid #5D1CAA;
  background-color: white;
}
.container-radio {
  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 radio button */
.container-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 21px;
  width: 21px;
  background-color: #fff;
  border:2px solid #ccc;
  border-radius: 50%;
  justify-content: center;
  display: flex;
  align-items: center;
}

/* On mouse-over, add a grey background color */
.container-radio:hover input ~ .checkmark {
  background-color: #eee;
}

/* When the radio button is checked, add a blue background */
.container-radio input:checked ~ .checkmark {
  background-color: #fff;
  border:2px solid #5D1CAA !important;

}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  /* position: absolute; */
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container-radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container-radio .checkmark:after {
  top: 3px;
  left: 3.1px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #5D1CAA;
  right: 3px;
  bottom: 3px;
}
.activebrandnav{
  background: #FFFFFF;
  border-bottom: 2px solid #5D1CAA;
}
.buttonstylebrand{
    height: 48px;
    width: 222px;
    background-color: #5D1CAA;
    border-radius: 10px;
    color: white;
    border: none;
    padding: 10px 30px;
}
td{
  font-size: 12px;
  font-weight: 400;
}
.btnstyles{
    height: 32px;
    width: 165px;
    background-color: #5D1CAA;
    border-radius: 10px;
    color: white;
    border: none;
    padding: 5px 24px;
}
.style-btn{
  font-size: 12px;
  font-weight: 400;
  border:1px solid #787878;
  border-radius: 15px;
  background-color: white;
  width: fit-content;
  margin-bottom: 20px;  
}
.style-btn:hover,
.active{
  border-color: #5D1CAA ;
  border-radius: 15px;
  background-color: #F0E5FF;
  color:#5D1CAA;

}
.style-bton ,.style-btons{
  border:1px solid #787878;
  border-radius: 15px;
  background-color: white;
  width:100%;
}
.style-bton:hover .style-btons:hover,
.active{
  border-color: #5D1CAA ;
  border-radius: 15px;
  background-color: #F0E5FF;
  color:#5D1CAA;

}
input[type="checkbox"] {
  display: none;
}

/* Style the label to mimic a checkbox */
.custom-checkbox-label {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #eee;
  border: 1px solid #ccc;
  cursor: pointer;
  position: relative; /* Add relative positioning */
}

/* Style the tick mark */
.custom-checkbox-label:after {
  content: "\2713"; /* Unicode character for checkmark */
  font-size: 12px; /* Adjust the size */
  color: transparent; /* Initially transparent */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the checkmark */
}

/* Style the label when checkbox is checked */
input[type="checkbox"]:checked + .custom-checkbox-label:after {
  color: #fff; /* Change this to the desired color */
}

/* Style the label when checkbox is checked */
input[type="checkbox"]:checked + .custom-checkbox-label {
  background-color:#5D1CAA; /* Change this to the desired color */
}
.brand-button{
  display: flex;
  background-color: #f8f8f8;
  gap:3rem;
  display: flex;
  padding-left:2rem; 
}
.switch{
  color:#111111;
  padding:14px;
  text-decoration: none;

}
.switch:hover{
  color:#111111;
  background-color: white;
}
.container-scroll {
  position: relative;
  width: 200px; /* Adjust width as needed */
  overflow: hidden;
  height:346px;
}



.item-scroll {
    padding-left: 0.5rem;
    display: flex;
  height: 50px; /* Adjust item height as needed */
  line-height: 50px;
  border: 1px solid #ccc;
  margin-bottom: 5px; /* Adjust margin between items */
  gap: 1rem;
    align-items: center;
}

.switch-container {
  position: relative;
  display: inline-block;
  width: 59px;
  height: 33px;
  top:2rem;
  left:1rem;
}

.switch-input {
  display: none;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .switch-slider {
  background-color: #5D1CAA;
}

input:checked + .switch-slider:before {
  transform: translateX(26px);
}
.input-border{
  width: 100%;
    height: 4rem;
    border-radius: 8px;
    border-style: dotted;
    border-color: #d0d0d0;
}
.boxx{
  background: #F3F3F3;
    padding: 10px;
    border-radius: 19px;
}
.centered{
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 50vh;
  justify-content: center;
}
.centered button{
  background-color: white;
  border:1px solid #5D1CAA;
  border-radius:5px;
  padding:10px;
  width:450px;
}
.wallet-b{
  background-color: #FFF9DB;
  border:1px solid #AA821C;
  border-radius:18px;
  padding:7px 16px;
}
#customers th {
  padding-top: 15px;
  padding-bottom: 14px;
  text-align: left;
 
  
}
#customers tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
#customers tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
#customers tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
#customers tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
#customers {
  border-collapse: separate;
  border-spacing: 0;
  
}
#customers th {
  border: 1px solid #ddd;
  padding: 10px;
  
}
#customers td {
  border: 1px solid #ddd;
  padding: 10px;
}
td input[type="checkbox"] {
  display: block;
}
.rect {
  margin-top: 1rem;
  width: 100%;
  height: fit-content;
  border: 0.1px solid transparent; /* Set all borders to transparent */
  border-left-width: 12px;
  border-color:transparent transparent transparent #00BDE3; /* Set left border color */
  border-radius: 10px;
  background-color: #E7F6F8;
  display: flex;
  padding:5px;
  margin-bottom: 0rem;
  gap:1rem;
}
.yellow-rect{
  margin-top: 1rem;
  width: 100%;
  height: fit-content;
  border: 0.1px solid transparent; /* Set all borders to transparent */
  border-left-width: 12px;
  border-color:transparent transparent transparent #FFBE2E; /* Set left border color */
  border-radius: 10px;
  background-color: #FAF3D1;
  display: flex;
  padding:5px;
  margin-bottom: 0rem;
  gap:1rem;
}
.marg{
  margin:0;
}
.active-l {
  border-bottom: 2px solid #5D1CAA;
  background-color: #FAFAFA;
}
  .span-RETAIL {
    padding: 1rem;
    display: flex;
    justify-content: center;
    width: -webkit-fill-available;
    border-radius: 0.6rem 0 0 0.6rem;
    font-size: 17px;
    font-weight: 600;
  }
  .span-WHOLESALE {
    padding: 1rem;
    display: flex;
    justify-content: center;
    width: -webkit-fill-available;
    border-radius: 0 0.6rem 0.6rem 0;
    font-size: 17px;
    font-weight: 600;
    border-bottom: 2px solid #b3b2b4;}

    .formbold-file-input input {
      display: none;
      opacity: 0;
      position: absolute;
      width: 100%;
      height: 100%;
  }
  .formbold-drop-file {
    display: block;
    font-weight: 600;
    color: #07074d;
    font-size: 20px;
    margin-bottom: 8px;
}
.style-bu{
  border-radius: 21px;
  padding: 4px 21px;
  border:1px solid #787878;
}
.style-bu:hover{
  background-color:#F0E5FF ;
  border:1px solid #5D1CAA;
}
.input-styler{
  border: 1px solid #B3B3B3;
  padding: 10px;
  border-radius: 1rem;
}
.brdr-b{
    border: 1px solid #5D1CAA;
    border-radius: 10px;
    background-color: #fff;
    color: #5D1CAA;
}
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width:927px;
  height: 466px;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* The Close Button */
.closemodal{
  width: 4rem;
  border-radius: 23px;
  background-color:#5D1CAA;
  text-align: center;
  top: -1rem;
  right: -1rem;
  position: absolute;
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
}

.closemodal:hover,
.closemodal:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.closemodal2{
  width: 4rem;
  border-radius: 23px;
  background-color:#5D1CAA;
  text-align: center;
  top: -1rem;
  right: -1rem;
  position: absolute;
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
}

.closemodal2:hover,
.closemodal2:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}.closemodal3{
  width: 4rem;
  border-radius: 23px;
  background-color:#5D1CAA;
  text-align: center;
  top: -1rem;
  right: -1rem;
  position: absolute;
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
}

.closemodal3:hover,
.closemodal3:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 10px;
  background-color: #fafafa;
  justify-content: start;
 
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 10px;
  background-color: #fafafa;
  justify-content: flex-start;
 
}
.brown-rect{
  margin-top: 1rem;
  width: 100%;
  height: fit-content;
  border: 0.1px solid transparent; /* Set all borders to transparent */
  border-left-width: 12px;
  border-color:transparent transparent transparent #D54309; /* Set left border color */
  border-radius: 10px;
  background-color: #F4E3DB;
  display: flex;
  padding:5px;
  margin-bottom: 0rem;
  gap:1rem;
}
.c-stylingg{
  max-width: 21rem;width: 58%;border:1px solid inherit;border-radius: 8px;height:105px;
}
.active-border{
  border:1px solid #5D1CAA;
 box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1); /* Set your desired box shadow */
}
.c-stylingg:hover{
  border:1px solid #5D1CAA;
 box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1); /* Set your desired box shadow */
}
.star-rating {
  font-size: 24px;
}

.star {
  cursor: pointer;
  color: rgb(185, 183, 183);
  border: 1px solid inherit;
}

.star:hover,
.star.active {
  color:#5D1CAA;
  background-color: white;
}
.inp-styl{
  width: 100%;
    height: 11rem;
    border: 1px solid #dedbdb;
    border-radius: 10px;
}
.reports-button{
  display: flex;
  background-color: #f8f8f8;
  gap:3rem;
  display: flex;
  padding-left:2rem; 
  border-bottom: 1px solid #ddd;
}
.tableheadingbg th{
  background-color: #fafafa;
}
.customscheckboxslabels{
  display: inline-block;
  width: 70px;
  height: 20px;
  background-color: #eee;
  border: 1px solid #ccc;
  cursor: pointer;
  position: relative; /* Add relative positioning */
}

/* Style the tick mark */
.customscheckboxslabels:after {
  content: "\2713"; /* Unicode character for checkmark */
  font-size: 12px; /* Adjust the size */
  color: transparent; /* Initially transparent */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); /* Center the checkmark */
}
/* Style the label when checkbox is checked */
input[type="checkbox"]:checked + .customscheckboxslabels:after {
  color: #fff; /* Change this to the desired color */
}

/* Style the label when checkbox is checked */
input[type="checkbox"]:checked + .customscheckboxslabels{
  background-color:#5D1CAA; /* Change this to the desired color */
}

.cardbuttonstyle{
  max-width: 21rem;
  width: 58%;
  border-radius: 8px;
  height: 79px;
  border: none;
  background: #fff;
  text-align: start;
  padding: 1rem;
}
.brand-option{
  cursor: pointer;
  padding: 10px 5px;
}
.brand-option:hover{
  background-color: rgb(231, 229, 229);
}
.category-option{
  cursor: pointer;
  padding: 10px 5px;
}
.category-option:hover{
  background-color: rgb(231, 229, 229);
}


/*rangeslider*/
.range_container {
  display: flex;
  flex-direction: column;
  width: 80%;
  margin: 15px 0;
  }

  .sliders_control {
  position: relative;
  min-height: 50px;
  }

  .form_control_max {
  position: relative;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #635a5a;
  }

  .rangeslider::-webkit-slider-thumb {
  -webkit-appearance: none;
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;
  }

  .rangeslider::-moz-range-thumb {
  pointer-events: all;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #C6C6C6;
  cursor: pointer;  
  }

  .rangeslider::-webkit-slider-thumb:hover {
  background: #f7f7f7;
  }

  .rangeslider::-webkit-slider-thumb:active {
  box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  -webkit-box-shadow: inset 0 0 3px #387bbe, 0 0 9px #387bbe;
  }

  .form_control_container__time__input {
  color: #8a8383;
  width: 50px;
  height: 30px;
  font-size: 20px;
  border: none;
  }

  .form_control_container__time__input::-webkit-inner-spin-button, 
  .form_control_container__time__input::-webkit-outer-spin-button {  
  opacity: 1;
  }

  .rangeslider {
  -webkit-appearance: none; 
  appearance: none;
  height: 3px;
  width: 100%;
  position: absolute;
  background-color: #C6C6C6;
  pointer-events: none;
  }

  #fromSlider {
  height: 0;
  z-index: 1;
  }

  h1,h2,h3,h4,h5,h6,p{
    cursor: default;
  }

  .safetycountry{
    color: #000;
    background-color: #fff;
    border:1px solid #d7d5d5;
    width: 162px;height: 40px;
    border-radius: 10px;
    padding:10px 15px;
    float: left;
    font-weight: 500; 
    font-size: 13px;
  }

  #sellerNameText{
    align-items: center !important;
    display: flex !important;
  }