/*
Theme Name: Newspaper Magazine Bussiness
Theme URI: 
Author: 
Author URI: 
Description: Newspaper Magazine is a business website template
Version: 1.0.0
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

# Typography
# Normalize
# Accessibility
# Globals
# Alignments
# Clearings
# Posts and pages
# Captions
# Galleries
# Unit test
# Block Color Palette Colors
# pages
    ## navbar
    ## top_bar
    ## header_bottom
    ## banner
    ## banner_ads
    ## news
    ## video
    ## sports
    ## right_side_item
    ## topics
    ## widgets
    ## popular_stories
    ## recent-stories
    ## highlights
    ## trendy
    ## photogallery
    ## blog-details
    ## details_tag_area
    ## details_comments
    ## details_replay
    ## author
    ## about
    ## contact
    ## 404
    ## search_area

# components
    ## section_title
    ## button
    ## back_top
    ## preloader
    ## search_popup
    ## sidebars
    ## social-connects
    ## tags-area
    ## categories
    ## whats_new
    ## inner-page-menu
    ## common-socials
    ## faq
--------------------------------------------------------------*/
/* Media Queries */
/* Media Queries */
/*--------------------------------------------------------------
    google fonts
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
/*--------------------------------------------------------------
    Custom Color
--------------------------------------------------------------*/
:root {
  --main-color-one: #12433D;
  --main-color-one-rgb: 18, 67, 61;
  --secondary-color: #b8d5fd;
  --secondary-color-rgb: 184, 213, 253;
  --secondary-color-two: #599A8D;
  --secondary-color-two-rgb: 89, 154, 141;
  --gradient-bg-1: linear-gradient(0deg, #08132d 0, #25082d 100%);
  --section-bg-1: #25082d;
  --section-bg-2: #f7f7f7;
  --heading-color: #333333;
  --paragraph-color: #666666;
  --border-color: #f0f0f0;
  --white: #ffffff;
  --white-bg: #ffffff;
  --white-rgb: 255, 255, 255;
  --black: #1a1a1a;
  --black-bg: #1a1a1a;
  --black-rgb: 26, 26, 26;
  --body-color: #888888;
  --danger-color: #f00;
  --review-color: #FABE50;
  --new-color: #5AB27E;
  --heading-font: "Roboto", sans-serif;
  --body-font: "Manrope", sans-serif;
  --manrope-font: "Manrope", sans-serif;
  --roboto-font: "Roboto", sans-serif;
}

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  overflow-x: hidden;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -moz-osx-font-smoothing: grayscale;
  /* Firefox */
  -webkit-font-smoothing: antialiased;
  /* WebKit  */
}

body {
  margin: 0;
  color: var(---body-color);
  overflow-x: hidden;
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 26px;
}
@media only screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }
}
@media only screen and (max-width: 375px) {
  body {
    font-size: 14px;
  }
}

h1 {
  font-size: 60px;
  line-height: 1.0833333333;
}

h2 {
  font-size: 36px;
  line-height: 1.4444444444;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  h2 {
    font-size: 30px;
  }
}
@media only screen and (max-width: 575.98px) {
  h2 {
    font-size: 27px;
  }
}
@media only screen and (max-width: 480px) {
  h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 375px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 28px;
  line-height: 1.0833333333;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 575.98px) {
  h3 {
    font-size: 25px;
  }
}
@media only screen and (max-width: 480px) {
  h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 375px) {
  h3 {
    font-size: 22px;
  }
}

h4 {
  font-size: 24px;
  line-height: 1.0833333333;
}
@media only screen and (max-width: 575.98px) {
  h4 {
    font-size: 23px;
  }
}
@media only screen and (max-width: 375px) {
  h4 {
    font-size: 21px;
  }
}

h5 {
  font-size: 20px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h5 {
    font-size: 18px;
  }
}

h6 {
  font-size: 18px;
  line-height: 1.2380952381;
}
@media only screen and (max-width: 375px) {
  h6 {
    font-size: 16px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  margin: 0;
  -webkit-transition: 300ms;
  transition: 300ms;
}

p {
  color: var(--paragraph-color);
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  margin-bottom: 0;
  line-height: 26px;
  font-size: 16px;
}

a {
  color: inherit;
  text-decoration: none;
  color: var(--body-color);
  -webkit-transition: 300ms;
  transition: 300ms;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

pre {
  word-break: break-word;
}

a i {
  padding: 0 2px;
}

img {
  max-width: 100%;
}

ul.list-style-none {
  margin: 0;
  padding: 0;
  list-style: none;
}

ol {
  counter-reset: counter;
  padding-left: 0;
}

ol li {
  list-style: none;
}

ol li:before {
  counter-increment: counter;
  content: counter(counter);
  font-weight: 500;
  margin-right: 10px;
}

span {
  display: inline-block;
}

.desktop-center {
  text-align: center;
}

/* Chrome */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox  */
input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

.form-control {
  width: 100%;
}

textarea {
  width: 100%;
  padding: 15px 15px 0;
}

.tab_content_item {
  display: none;
}

.tab_content_item.active {
  display: block;
  -webkit-animation: 1s fade-effects;
          animation: 1s fade-effects;
}

@-webkit-keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fade-effects {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
/* Restaurant Menu Sidebar css */
.restaurantMenu__mainbars {
  position: fixed;
  top: 0;
  left: -100%;
  z-index: 9;
  background-color: #ffffff;
  width: 300px;
  height: 100vh;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.restaurantMenu__mainbars.show {
  left: 0;
}
.restaurantMenu__mainbars__close {
  font-size: 24px;
  color: #000000;
  position: relative;
  z-index: 9;
  display: inline-block;
  padding: 10px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: #ffffff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.restaurantMenu__mainbars__close:hover {
  background-color: var(--danger-color);
  color: var(--white);
}
.restaurantMenu__mainbars__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
  height: 100%;
  width: 100%;
  min-height: 320px;
  overflow-y: auto;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
}
.restaurantMenu__mainbars__contents::-webkit-scrollbar {
  display: none;
  background-color: transparent;
}
.restaurantMenu__mainbars__contents::-webkit-scrollbar-thumb {
  background: transparent;
}
.restaurantMenu__mainbars__contents__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.restaurantMenu__mainbars__contents__menu ul li:not(:first-child) a {
  padding-top: 7px;
}
.restaurantMenu__mainbars__contents__menu ul li:not(:last-child) a {
  padding-bottom: 7px;
}
.restaurantMenu__mainbars__contents__menu ul li:last-child {
  border-top: 1px solid #000000;
  padding-top: 20px;
  margin-top: 20px;
}
.restaurantMenu__mainbars__contents__menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000000;
}
.restaurantMenu__mainbars__contents__menu ul li a i {
  font-size: 24px;
}
.restaurantMenu__mainbars__contents__social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
.restaurantMenu__mainbars__contents__social ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 35px;
  width: 35px;
  border: 1px solid var(--white);
  color: var(--white);
  font-size: 16px;
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.restaurantMenu__mainbars__contents__social ul li a:hover {
  background-color: #000000;
  color: var(--main-color-one);
}

.restaurantMenuOverlay {
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0;
  left: 100%;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.restaurantMenuOverlay.show {
  visibility: visible;
  opacity: 1;
  z-index: 9;
  left: 0;
}

#foodRestaurantModal .modal-content {
  background-color: #811d05;
  border: 1px solid rgba(var(--white-rgb), 0.2);
  color: var(--white);
}
#foodRestaurantModal .modal-header {
  color: var(--white);
  border-color: rgba(var(--white-rgb), 0.2);
}
#foodRestaurantModal .modal-header .btn-close {
  background-color: transparent;
  color: var(--white);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(306deg) brightness(103%) contrast(101%);
          filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(306deg) brightness(103%) contrast(101%);
}
#foodRestaurantModal .modal-header .btn-close:focus, #foodRestaurantModal .modal-header .btn-close:hover {
  color: var(--danger-color);
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-filter: invert(12%) sepia(96%) saturate(7270%) hue-rotate(357deg) brightness(91%) contrast(121%);
          filter: invert(12%) sepia(96%) saturate(7270%) hue-rotate(357deg) brightness(91%) contrast(121%);
}
#foodRestaurantModal .modal-title {
  color: var(--white);
}

.restaurantMenu__wrapper {
 background: url(/main_bg.jpg);
}
.restaurantMenu__wrapper__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .restaurantMenu__wrapper__flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.restaurantMenu__wrapper__left {
  max-width: 575px;
  border-right: 1px solid var(--black);
}
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .restaurantMenu__wrapper__left {
    max-width: 500px;
    background:#181818;
  }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .restaurantMenu__wrapper__left {
    max-width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .restaurantMenu__wrapper__left {
    max-width: 450px;
  }
}
@media (min-width: 300px) and (max-width: 991.98px) {
  .restaurantMenu__wrapper__left {
    max-width: 100%;
  }
}
.restaurantMenu__wrapper__body {
  width: 100%;
  padding: 20px;
}
.restaurantMenu__wrapper__body__middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  color: var(--white);
}
.restaurantMenu__sidebar {
  height: 100vh;
  padding: 10px;
  overflow-y: auto;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  background:#181818;
}
.restaurantMenu__sidebar::-webkit-scrollbar {
  display: none;
  background-color: transparent;
}
.restaurantMenu__sidebar::-webkit-scrollbar-thumb {
  background: transparent;
}
.restaurantMenu__sidebar__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          background-color:#235151;
}
.restaurantMenu__sidebar__header__icon {
  background-color: rgba(var(--white-rgb), 0.1);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 40px;
  width: 40px;
  font-size: 20px;
  color: #ffffff;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.restaurantMenu__sidebar__header__icon:hover {
  background-color: var(--white-bg);
  color: var(--main-color-one);
}
.restaurantMenu__sidebar__body__menu__head {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.restaurantMenu__sidebar__body__menu__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  color: #000000;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.restaurantMenu__sidebar__body__menu__title::after {
  content: "\f0d7";
  font-family: "Line Awesome Free";
  font-weight: 600;
  font-size: 20px;
}
.restaurantMenu__sidebar__body__menu__list {
  overflow-x: auto;
  scrollbar-color: transparent transparent;
  scrollbar-width: thin;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
}
.restaurantMenu__sidebar__body__menu__list::-webkit-scrollbar {
  display: none;
  background-color: transparent;
}
.restaurantMenu__sidebar__body__menu__list::-webkit-scrollbar-thumb {
  background: transparent;
}
.restaurantMenu__sidebar__body__menu__list__arrow {
  position: absolute;
  left: 2px;
  top: 15px;
  background-color: #b93617;
  color: var(--main-color-one);
  font-size: 16px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-shadow: 0 0 5px rgba(var(--white-rgb), 0.5);
          box-shadow: 0 0 5px rgba(var(--white-rgb), 0.5);
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.restaurantMenu__sidebar__body__menu__list__arrow:hover {
  background-color: var(--main-color-one);
  color: var(--white);
  -webkit-box-shadow: 0 0 5px rgba(var(--white-rgb), 0.5);
          box-shadow: 0 0 5px rgba(var(--white-rgb), 0.5);
}
.restaurantMenu__sidebar__body__menu__list__arrow.rightArrow {
  left: auto;
  right: 2px;
}
.restaurantMenu__sidebar__body__menu__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px 0px;
  padding: 0 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 10px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow-x: auto;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  overflow-y: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.restaurantMenu__sidebar__body__menu__list ul li {
  padding: 0 10px 15px;
  color: #ffffff;
  position: relative;
  cursor: pointer;
}
.restaurantMenu__sidebar__body__menu__list ul li::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 0%;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #F44336;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.restaurantMenu__sidebar__body__menu__list ul li.active::before {
  visibility: visible;
  opacity: 1;
  width: 100%;
}
.restaurantMenu__sidebar__body__menu__list__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.restaurantMenu__sidebar__body__menu__list__contents img {
  max-width: 50px;
  border-radius:25px;
}
.restaurantMenu__sidebar__body__menu__list__contents span {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}
.restaurantMenu__sidebar__body__menu__contents__title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: #000000;
}
.restaurantMenu__sidebar__body__menu__contents__item {
  background-color: #333333;
  padding: 10px;
}
.restaurantMenu__sidebar__body__menu__contents__item:not(:first-child) {
  margin-top: 10px;
  border-radius:70px;
}
.restaurantMenu__sidebar__body__menu__contents__item__title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
}
.restaurantMenu__sidebar__body__menu__contents__item__para {
  font-size: 9px;
  font-weight: 400;
  line-height: 20px;
  color: #ffffff;
  display: -webkit-box;
  overflow: visible;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.restaurantMenu__sidebar__body__menu__contents__item__code {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #ffffff;
}
.restaurantMenu__sidebar__body__menu__contents__item__flex {
      display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    flex-direction: row-reverse;
    flex-wrap: wrap;

}
.restaurantMenu__sidebar__body__menu__contents__item__contents {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.restaurantMenu__sidebar__body__menu__contents__item__thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 150px;
}
@media only screen and (max-width: 575.98px) {
  .restaurantMenu__sidebar__body__menu__contents__item__thumb {
    max-width: 120px;
  }
}
@media only screen and (max-width: 480px) {
  .restaurantMenu__sidebar__body__menu__contents__item__thumb {
    max-width: 100px;
  }
}
.restaurantMenu__sidebar__footer {
  padding: 10px 10px 0;
}
.restaurantMenu__sidebar__footer__para {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
}

.hidden_item {
  visibility: hidden !important;
}

.restaurantMenuSelect__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.restaurantMenuSelect__list__item:not(:last-child) a {
  border-bottom: 1px solid rgba(var(--white-rgb), 0.2);
}
.restaurantMenuSelect__list__item.selected a {
  font-weight: 700;
  background-color: rgba(var(--white-rgb), 0.8);
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}
.restaurantMenuSelect__list__item.selected a::after {
  content: "\f00c";
  color: var(--main-color-one);
}
.restaurantMenuSelect__list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
  color: rgba(var(--white-rgb), 0.8);
  background-color: rgba(var(--white-rgb), 0.05);
  padding: 10px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.restaurantMenuSelect__list__link::after {
  content: "\f105";
  font-family: "Line Awesome Free";
  font-weight: 900;
  color: rgba(var(--white-rgb), 0.8);
}
.restaurantMenuSelect__list__link:hover {
  font-weight: 700;
  background-color: rgba(var(--white-rgb), 0.8);
  color: var(--main-color-one);
  border-color: var(--main-color-one);
}
.restaurantMenuSelect__list__link:hover::after {
  content: "\f00c";
  color: var(--main-color-one);
}

.subcategory-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff; /* Add your desired background color here */
    z-index: 1000;
    border-bottom: 1px solid #ccc; /* Add a border if desired */
}
/* Style for the container */
.image-container {
  position: relative;
  display: inline-block;
}

/* Style for the tooltip */
.image-container .tooltip {
  visibility: hidden;
  width: 200px;
  background-color: #fff;
  border: 1px solid #ccc;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}

/* Style for the enlarged image */
.image-container .tooltip img {
  max-width: 100%;
}

/* Show the tooltip on hover */
.image-container:hover .tooltip {
  visibility: visible;
}

.restaurantMenu__sidebar__header__language {
    margin-left: 10px; /* Adjust as needed */
}

#languageDropdown {
    padding: 5px;
    border-radius: 4px;
    border: 1px solid #ccc;
    background-color: #fff;
    font-size: 14px;
    /* Add more styles as needed */
}
