.restaurant-page {
  max-width: 1624px;
  width: 100%;
}
.restaurant-page-banner {
  height: 150px;
  display: flex;
  margin: 40px 0;
  position: relative;
}
.restaurant-page-banner-logo {
  height: 150px;
  width: 150px;
  background-color: #F5F5F5;
  border-radius: 10px;
}
.restaurant-page-name {
  display: flex;
  margin-left: 30px;
}
.restaurant-page-name-container {
  display: flex;
  flex-direction: column;
}
.restaurant-page-name-title {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}
.restaurant-page-name-rating {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 20px;
  height: 100%;
}
.restaurant-page-name-rating-text {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}
.restaurant-page-name-button {
  margin-left: 20px;
  cursor: pointer;
}
.restaurant-page-name-button:hover + .restaurant-info-tooltip, .restaurant-page-name-button + .restaurant-info-tooltip:hover {
  display: flex;
}
.restaurant-page-subtitle {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  margin: 10px 0 0;
}

.nav-panel-btn {
  background-color: #F5F5F5 !important;
  color: #000000;
  border: 0;
  border-radius: 50px;
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  cursor: pointer;
  padding: 8px 12px;
  margin-right: 6px;
}
.nav-panel-btn.active {
  background-color: #F5F5F5;
  border: 1px solid #000000;
}

.section-title {
  font-family: "Golos Text", Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  margin: 30px 0 20px;
}

.site-main {
  display: flex;
  justify-content: center;
}

.column-container {
  display: flex;
  flex-direction: column;
}

.restaurant-info-tooltip {
  display: none;
  flex-direction: column;
  min-width: 209px;
  text-align: left;
  opacity: 1;
  background-color: white !important;
  color: black !important;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  position: absolute;
  left: -72px;
  top: 30px;
  padding: 14px 0 14px 14px;
}
.restaurant-info-tooltip-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 22px;
  margin: 0 0 10px;
}
.restaurant-info-tooltip-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
.restaurant-info-tooltip-ogrn {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  color: rgb(170, 170, 170);
  margin: 10px 0 4px;
}

@media screen and (max-width: 1100px) {
  .restaurant-page-banner {
    height: 161px;
    margin: 32px;
  }
  .restaurant-page-banner-logo {
    height: 161px;
    width: 161px;
  }
  .section-title {
    margin: 30px auto 20px 32px;
  }
  .nav-panel {
    margin-left: 32px;
  }
}
@media screen and (max-width: 600px) {
  .restaurant-page-banner {
    height: auto;
    margin: 46px auto 20px 16px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .restaurant-page-banner-logo {
    height: 150px;
    width: 150px;
  }
  .restaurant-page-name {
    margin: 10px 0 0;
  }
  .restaurant-page-name-container {
    display: flex;
    flex-direction: column;
  }
  .restaurant-page-name-title {
    font-size: 22px;
    line-height: 26px;
    margin: 0;
  }
  .restaurant-page-name-rating {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 20px;
  }
  .restaurant-page-name-button {
    margin-left: 20px;
    cursor: pointer;
  }
  .restaurant-page-name-button:hover + .restaurant-info-tooltip, .restaurant-page-name-button + .restaurant-info-tooltip:hover {
    display: flex;
  }
  .restaurant-page-subtitle {
    margin: 6px 0 0;
  }
  .section-title {
    font-size: 16px;
    line-height: 19px;
    margin: 20px auto 10px 16px;
  }
  .nav-panel {
    margin-left: 10px;
  }
  .restaurant-info-tooltip {
    display: none;
    flex-direction: column;
    width: 100vw;
    height: auto;
    min-height: 140px;
    text-align: left;
    opacity: 1;
    background-color: white !important;
    color: black !important;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2) !important;
    position: fixed;
    left: 0;
    bottom: 0;
    right: 0;
    padding: 20px 16px 14px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
  }
  .restaurant-info-tooltip::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background-color: #ddd;
    border-radius: 2px;
  }
  .restaurant-info-tooltip.active {
    transform: translateY(75%);
  }
  .restaurant-info-tooltip-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    margin: 0 0 10px;
  }
  .restaurant-info-tooltip-text {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
  }
  .restaurant-info-tooltip-ogrn {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: rgb(170, 170, 170);
    margin: 10px 0 4px;
  }
  .tooltip-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }
  .tooltip-backdrop.active {
    display: block;
  }
}/*# sourceMappingURL=restaurant.css.map */