@font-face {
  font-family: 'HelveticaCE';
  src: url('../Fonts/HelveticaCEMedium.woff2') format('woff2'), url('../Fonts/HelveticaCEMedium.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Sawarabi Mincho';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(https://fonts.gstatic.com/s/sawarabimincho/v17/8QIRdiDaitzr7brc8ahpxt6GcIJTLQ.ttf) format('truetype');
}
html,
body {
  background-color: black;
  color: white;
  font-size: 14px;
  line-height: 18px;
  font-family: 'Sawarabi Mincho', serif;
}
html.scroll_disabled,
body.scroll_disabled {
  overflow: hidden;
}
a {
  display: inline-block;
  color: #333;
  text-decoration: none;
}
a.--underline_hover:hover {
  text-decoration: underline;
}
a.--white {
  color: white;
}
a.--style_1 {
  padding: 7px 30px;
  background-color: #f7941d;
  color: #333;
  border: 1px solid #333;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.5s;
}
a.--style_1:hover,
a.--style_1.--current {
  background-color: #ff0000;
}
a.--style_2 {
  padding: 7px 10px;
  background-color: #f7941d;
  color: #333;
  border: 1px solid #333;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.5s;
}
a.--style_2:hover {
  background-color: #ff0000;
}
hr {
  display: inline-block;
  margin: 20px 0;
  border: none;
  border-top: 1px solid white;
}
img {
  display: block;
}
.anchor {
  display: block;
  position: relative;
  top: -75px;
  visibility: hidden;
}
.flex {
  display: flex;
}
.flex__align_items--center {
  align-items: center;
}
.flex__align_items--flex_start {
  align-items: flex-start;
}
@media screen and (max-width: 1140px) {
  .flex--mobile {
    display: block;
  }
}
.flex--1 {
  flex: 1;
}
.flex--2 {
  flex: 2;
}
.margin__top--5 {
  margin-top: 5px;
}
.margin__top--10 {
  margin-top: 10px;
}
.margin__top--15 {
  margin-top: 15px;
}
.margin__top--30 {
  margin-top: 30px;
}
.margin__bottom--20 {
  margin-bottom: 20px;
}
.margin__bottom--30 {
  margin-bottom: 30px;
}
.padding__top--30 {
  padding-top: 30px;
}
.padding__bottom--20 {
  padding-bottom: 20px;
}
.padding__bottom--30 {
  padding-bottom: 30px;
}
.padding__left--10 {
  padding-left: 10px;
}
.text--align_center {
  text-align: center;
}
.text--align_right {
  text-align: right;
}
.text--align_justify {
  text-align: justify;
}
.text--weight_bold {
  font-weight: bold;
}
.line_height--0 {
  line-height: 0;
}
.line_height--25 {
  line-height: 25px;
}
.height--65 {
  margin-top: 65px;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.5);
  z-index: 5;
}
.header .middle_container {
  display: flex;
  align-items: center;
  height: 65px;
  transition: height 0.3s;
}
.header .__logo {
  font-size: 0;
  line-height: 0;
  transition: margin-bottom 0.3s;
}
.header .__logo img {
  transition: width 0.3s;
}
.header .__main_menu {
  flex: 1;
  margin: 0;
  padding: 0;
  text-align: right;
  z-index: 10;
}
.header .__main_menu li {
  display: inline-block;
  margin-right: 15px;
  vertical-align: middle;
}
.header .__main_menu li.--current a {
  color: #333;
}
.header .__main_menu li a {
  font-size: 14px;
  line-height: 33px;
  color: #777;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
}
.header .__main_menu li a:hover {
  color: #333;
  border-bottom-color: #333;
}
.header .__extra_menu {
  margin: 0;
  padding: 0;
  text-align: right;
}
.header .__extra_menu li {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.header .__extra_menu li.--current a {
  color: #333;
}
.header .__extra_menu li.--current a .image_link_base {
  display: none;
}
.header .__extra_menu li.--current a .image_link_hover {
  display: block;
}
.header .__extra_menu li a {
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 13px;
  color: #777;
}
.header .__extra_menu li a .image_link_hover {
  display: none;
}
.header .__extra_menu li a:hover {
  color: #333;
}
.header .__extra_menu li a:hover .image_link_base {
  display: none;
}
.header .__extra_menu li a:hover .image_link_hover {
  display: block;
}
.header .__extra_menu li.cart a .fa-cart-shopping {
  font-size: 16px;
  line-height: 21px;
}
.header .__hamburger_menu {
  position: relative;
  display: none;
  width: 35px;
  height: 25px;
  margin-left: 10px;
  cursor: pointer;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
}
.header .__hamburger_menu span {
  position: absolute;
  display: block;
  left: 0;
  width: 35px;
  height: 5px;
  background-color: #777;
  opacity: 1;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header .__hamburger_menu span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}
.header .__hamburger_menu span:nth-child(2) {
  top: 10px;
  transform-origin: left center;
}
.header .__hamburger_menu span:nth-child(3) {
  top: 20px;
  transform-origin: left center;
}
.header .__hamburger_menu.js--active span:nth-child(1) {
  top: -3px;
  left: 0;
  transform: rotate(45deg);
}
.header .__hamburger_menu.js--active span:nth-child(2) {
  width: 0;
  opacity: 0;
}
.header .__hamburger_menu.js--active span:nth-child(3) {
  top: 22px;
  left: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 1140px) {
  .header .__main_menu {
    position: absolute;
    display: none;
    top: 65px;
    right: 0;
    width: 100%;
    height: 100vh;
    padding-top: 20px;
    background-color: white;
  }
  .header .__main_menu.js--show {
    display: block;
  }
  .header .__main_menu li {
    display: block;
    margin: 15px 0 15px 0;
    text-align: center;
  }
  .header .__extra_menu {
    flex: 1;
  }
  .header .__hamburger_menu {
    display: block;
  }
}
.notice {
  padding: 20px 10px;
  background-color: #f7941d;
  color: #333;
  text-align: center;
  font-size: 16px;
  line-height: 21px;
}
.content {
  background-color: #6c231d;
  box-shadow: 0 0px 8px 2px rgba(0, 0, 0, 0.5);
}
.footer .footer_top {
  background-color: #f7941d;
  color: #333;
  padding-bottom: 30px;
}
.footer .footer_buttom {
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid white;
  background-color: black;
  color: white;
}
.footer .footer_buttom a:hover {
  text-decoration: underline;
}
.footer .footer_buttom .__code_maker {
  flex: 1;
  font-size: 11px;
  line-height: 13px;
}
.footer .footer_buttom .__code_maker a {
  color: white;
}
.footer .footer_buttom .__design_maker {
  flex: 1;
  text-align: right;
  font-size: 11px;
  line-height: 13px;
}
.footer .footer_buttom .__design_maker a {
  color: white;
}
.footer .footer_buttom .__social_container {
  flex: 1;
  padding: 0 20px;
  text-align: center;
}
.footer .footer_buttom .__social_container a {
  font-size: 30px;
  color: white;
  transition: opacity 0.3s;
}
.footer .footer_buttom .__social_container a:hover {
  opacity: 0.8;
}
.middle_container {
  margin: 0 auto;
  max-width: 1140px;
}
@media screen and (max-width: 1140px) {
  .middle_container {
    margin: 0 10px;
  }
}
.errors {
  display: none;
  margin: 10px 0;
  padding: 10px 5px;
  border-radius: 3px;
  background-color: #ff0000;
  color: white;
}
.errors.--js_show,
.errors.--show {
  display: block;
}
.title--medium {
  font-size: 16px;
  line-height: 21px;
  padding-top: 30px;
  padding-bottom: 10px;
}
.title--big {
  font-size: 25px;
  line-height: 33px;
  padding-top: 30px;
  padding-bottom: 10px;
}
.title--padding_top_0 {
  padding-top: 0;
}
.submit {
  padding: 7px 30px;
  background-color: #f7941d;
  color: #333;
  border: 1px solid #333;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.5s;
  cursor: pointer;
}
.submit:hover,
.submit:focus {
  background-color: #ff0000;
}
.delete {
  padding: 7px 30px;
  background-color: #cccccc;
  color: #333;
  border: 1px solid #333;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.5s;
  cursor: pointer;
}
.delete:hover,
.delete:focus {
  background-color: #ff0000;
}
.input_container {
  margin-bottom: 20px;
  color: white;
}
.input_container label {
  display: block;
  margin-bottom: 5px;
}
.input_container input[type="text"],
.input_container input[type="password"],
.input_container select,
.input_container textarea {
  display: block;
  box-sizing: border-box;
  width: 100%;
  min-height: 27px;
  padding: 5px 8px;
  background-color: white;
  color: black;
  border: 1px solid black;
  border-radius: 5px;
  outline: none;
  transition: all 0.3s;
}
.input_container input[type="text"]:hover,
.input_container input[type="password"]:hover,
.input_container select:hover,
.input_container textarea:hover,
.input_container input[type="text"]:focus,
.input_container input[type="password"]:focus,
.input_container select:focus,
.input_container textarea:focus {
  border-color: #ff0000;
}
.input_container input[type="radio"] {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-bottom: 5px;
}
.input_container input[type="radio"] + label {
  display: inline-block;
  color: white;
}
.icon_list img {
  display: inline-block;
  height: 30px;
  margin-right: 2px;
  background-color: white;
}
.cookie {
  position: fixed;
  display: flex;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #eeeeee;
  z-index: 100;
  box-shadow: 0 2px 12px 2px rgba(0, 0, 0, 0.5);
}
.cookie .cookie_container {
  display: flex;
  width: 95%;
  max-width: 1100px;
  padding: 10px 0 10px 0;
  margin: 0 auto 0 auto;
  align-items: center;
  justify-content: space-evenly;
}
.cookie .cookie_container .cookie_text {
  display: flex;
  flex-direction: column;
  margin-bottom: 5px;
}
.cookie .cookie_container .cookie_text .cookie_title {
  color: #333;
  font-size: 11px;
  line-height: 13px;
  font-weight: 700;
}
@media screen and (max-width: 1140px) {
  .cookie .cookie_container {
    display: block;
  }
}
.error_text_container {
  padding: 20px 5px;
  color: white;
  background-color: #ff0000;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}
.correct_text_container {
  padding: 20px 5px;
  color: #333;
  background-color: #00ff31;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}
.warning_text_container {
  padding: 20px 5px;
  color: #333;
  background-color: #ffe9bd;
  font-size: 16px;
  line-height: 21px;
  text-align: center;
}
.js_home_page .main_image {
  width: 100%;
  height: 530px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url('/Views/Images/home_page/haveli_stock.jpg');
}
.js_home_page .section {
  padding-bottom: 30px;
  font-size: 16px;
  line-height: 21px;
}
.js_home_page .section--2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-image: url('/Views/Images/home_page/haveli_rolunk_bg.jpg');
  background-size: cover;
}
.js_home_page .section--2 .middle_container {
  margin: 0 auto;
  padding: 10px;
  padding-bottom: 30px;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  color: #333;
}
.js_home_page .section--2 img {
  display: inline-block;
  max-width: 220px;
}
.js_home_page .section--3 {
  padding-top: 40px;
  padding-bottom: 60px;
  background-image: url('/Views/Images/home_page/haveli_asztalfoglalas_bg.jpg');
  background-size: 70%;
  background-position: center right;
  text-align: left;
  border-top: 20px solid #f7941d;
  border-bottom: 20px solid #ff0000;
}
.js_home_page .section--3 a {
  margin-top: 20px;
}
@media screen and (max-width: 1140px) {
  .js_home_page .section--3 {
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.js_home_page .section--4 {
  padding-top: 40px;
  padding-bottom: 60px;
  background-image: url('/Views/Images/home_page/haveli_hazhozszallitas_bg.jpg');
  background-size: 70%;
  background-position: center center;
  text-align: left;
  border-top: 20px solid #f7941d;
  border-bottom: 20px solid #ff0000;
}
.js_home_page .section--4 a {
  margin-top: 20px;
}
@media screen and (max-width: 1140px) {
  .js_home_page .section--4 {
    background-size: cover;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 1140px) {
  .js_home_page .main_image {
    height: 300px;
  }
}
.js_home_delivery_choose_page .__js_home_delivery_form {
  margin-top: 30px;
  padding-bottom: 30px;
  text-align: center;
}
.js_home_delivery_choose_page .__address_input input {
  display: inline-block;
  max-width: 410px;
}
.js_home_delivery_choose_page .errors {
  margin: 10px auto;
  max-width: 410px;
}
.js_home_delivery_choose_page .js_submit {
  display: none;
}
.js_home_delivery_choose_page .js_submit.--js_show {
  display: inline-block;
}
.js_home_delivery_choose_page .description img {
  max-width: 300px;
}
.js_home_delivery_products_block.--enabled .__product_cart {
  display: flex;
}
.js_home_delivery_products_block .__navigator {
  margin: 0;
  padding: 0;
  max-width: 250px;
}
.js_home_delivery_products_block .__navigator .__navigator_item {
  display: block;
  width: 100%;
}
.js_home_delivery_products_block .__navigator .__navigator_item:last-child {
  margin-right: 0;
}
.js_home_delivery_products_block .__navigator .__navigator_item a {
  display: block;
}
.js_home_delivery_products_block .__product_groups {
  margin-left: 20px;
}
.js_home_delivery_products_block .__product_group_name {
  margin-bottom: 15px;
  padding: 10px;
  color: white;
  background-color: #ff0000;
  font-size: 19px;
  line-height: 23px;
  border-bottom: 1px dashed white;
}
.js_home_delivery_products_block .__product_subgroup_name {
  margin-top: 15px;
  margin-bottom: 5px;
  color: #777;
  font-size: 14px;
  line-height: 18px;
}
.js_home_delivery_products_block .__products {
  padding-left: 10px;
}
.js_home_delivery_products_block .__product {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}
.js_home_delivery_products_block .__product_name {
  flex: 1;
  color: white;
}
.js_home_delivery_products_block .__product_name img {
  display: inline-block;
  width: 20px;
  vertical-align: top;
}
.js_home_delivery_products_block .__product_name div {
  margin-left: 20px;
  color: #f7941d;
}
.js_home_delivery_products_block .__product_price {
  min-width: 90px;
  text-align: right;
  color: white;
}
.js_home_delivery_products_block .__product_cart {
  display: none;
  align-items: center;
  justify-content: flex-end;
  width: 80px;
}
.js_home_delivery_products_block .__product_cart a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: white;
  cursor: pointer;
}
.js_home_delivery_products_block .__product_cart a:hover {
  color: #f7941d;
}
.js_home_delivery_products_block .__product_cart a:hover .__product_cart__icon .image_link_base {
  display: none;
}
.js_home_delivery_products_block .__product_cart a:hover .__product_cart__icon .image_link_hover {
  display: block;
}
.js_home_delivery_products_block .__product_cart .__product_cart__icon .image_link_hover {
  display: none;
}
.js_home_delivery_products_block .__system_error {
  padding: 30px 0;
}
@media screen and (max-width: 1140px) {
  .js_home_delivery_products_block .__navigator {
    display: none;
  }
  .js_home_delivery_products_block .__product_groups {
    margin-left: 0;
  }
}
.js_menu_page {
  padding-bottom: 30px;
}
.js_home_delivery_products_page {
  padding-bottom: 30px;
}
.js_cart_page,
.js_cart_summary_page {
  padding-bottom: 30px;
}
.js_cart_page .__product,
.js_cart_summary_page .__product,
.js_cart_page .__sum,
.js_cart_summary_page .__sum {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
}
.js_cart_page .__sum,
.js_cart_summary_page .__sum {
  font-weight: bold;
}
.js_cart_page .__product_name,
.js_cart_summary_page .__product_name,
.js_cart_page .__sum_title,
.js_cart_summary_page .__sum_title {
  flex: 1;
  color: white;
}
.js_cart_page .__product_name div,
.js_cart_summary_page .__product_name div,
.js_cart_page .__sum_title div,
.js_cart_summary_page .__sum_title div {
  margin-left: 20px;
  color: #777;
}
.js_cart_page .__sum_title,
.js_cart_summary_page .__sum_title {
  color: white;
}
.js_cart_page .__product_qty,
.js_cart_summary_page .__product_qty {
  min-width: 90px;
  text-align: right;
  color: white;
}
.js_cart_page .__product_price,
.js_cart_summary_page .__product_price,
.js_cart_page .__sum_price,
.js_cart_summary_page .__sum_price {
  min-width: 90px;
  text-align: right;
  color: white;
}
.js_cart_page .__sum_price,
.js_cart_summary_page .__sum_price {
  margin-right: 30px;
  color: white;
}
.js_cart_page .__product_delete,
.js_cart_summary_page .__product_delete {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 30px;
  color: white;
  cursor: pointer;
}
.js_cart_page .__product_delete:hover,
.js_cart_summary_page .__product_delete:hover {
  color: #f7941d;
}
.js_cart_page .__js_cart_form,
.js_cart_summary_page .__js_cart_form {
  margin: 0 auto;
}
.js_cart_page .__js_cart_form .__address_show_container,
.js_cart_summary_page .__js_cart_form .__address_show_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.js_cart_page .__js_cart_form .__address_show_container .__js_open_address_modify,
.js_cart_summary_page .__js_cart_form .__address_show_container .__js_open_address_modify {
  font-size: 11px;
  line-height: 13px;
}
.js_cart_page .__js_cart_form .__js_address_modify_container,
.js_cart_summary_page .__js_cart_form .__js_address_modify_container {
  display: none;
  padding: 20px;
}
.js_cart_page .__js_cart_form .__js_address_modify_container.--js_show,
.js_cart_summary_page .__js_cart_form .__js_address_modify_container.--js_show {
  display: block;
}
.js_cart_page .__js_cart_form .__js_address_modify_container .__js_address_modify_errors,
.js_cart_summary_page .__js_cart_form .__js_address_modify_container .__js_address_modify_errors {
  text-align: center;
  font-size: 11px;
  line-height: 13px;
}
.js_cart_page .__js_cart_form .__js_address_modify_container .__js_address_modify_submit,
.js_cart_summary_page .__js_cart_form .__js_address_modify_container .__js_address_modify_submit {
  display: none;
  margin-top: 15px;
}
.js_cart_page .__js_cart_form .__js_address_modify_container .__js_address_modify_submit.--js_show,
.js_cart_summary_page .__js_cart_form .__js_address_modify_container .__js_address_modify_submit.--js_show {
  display: block;
}
.js_cart_page .__js_cart_form .__invoice_details,
.js_cart_summary_page .__js_cart_form .__invoice_details {
  display: none;
}
.js_cart_page .__js_cart_form .__invoice_details.--js_show,
.js_cart_summary_page .__js_cart_form .__invoice_details.--js_show {
  display: block;
}
.js_cart_page .__js_cart_form .__is_invoice,
.js_cart_summary_page .__js_cart_form .__is_invoice,
.js_cart_page .__js_cart_form .__gtc,
.js_cart_summary_page .__js_cart_form .__gtc {
  display: flex;
}
.js_cart_page .__js_cart_form .__is_invoice input,
.js_cart_summary_page .__js_cart_form .__is_invoice input,
.js_cart_page .__js_cart_form .__gtc input,
.js_cart_summary_page .__js_cart_form .__gtc input {
  width: auto;
  margin-right: 10px;
}
.js_cart_page .__js_cart_form .__is_invoice label,
.js_cart_summary_page .__js_cart_form .__is_invoice label,
.js_cart_page .__js_cart_form .__gtc label,
.js_cart_summary_page .__js_cart_form .__gtc label {
  margin-bottom: 0;
}
.js_cart_page .__js_cart_form .__is_invoice label a,
.js_cart_summary_page .__js_cart_form .__is_invoice label a,
.js_cart_page .__js_cart_form .__gtc label a,
.js_cart_summary_page .__js_cart_form .__gtc label a {
  color: white;
  text-decoration: underline;
}
.js_cart_page .__js_cart_form .errors,
.js_cart_summary_page .__js_cart_form .errors {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 18px;
}
.js_cart_page .__order_not_in_time_notification,
.js_cart_summary_page .__order_not_in_time_notification,
.js_cart_page .__min_order_notification,
.js_cart_summary_page .__min_order_notification {
  text-align: center;
}
.js_cart_page .__cart_items_container,
.js_cart_summary_page .__cart_items_container {
  margin-top: 25px;
  margin-right: 100px;
}
@media screen and (max-width: 1140px) {
  .js_cart_page .__cart_items_container,
  .js_cart_summary_page .__cart_items_container {
    margin-top: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 1140px) {
  .js_cart_page .__cart_customer_container,
  .js_cart_summary_page .__cart_customer_container {
    margin-top: 30px;
  }
}
.js_cart_page .__card_type_icons img,
.js_cart_summary_page .__card_type_icons img {
  height: 18px;
}
.js_about_us_page {
  padding-bottom: 30px;
}
.js_about_us_page a {
  color: white;
}
.js_about_us_page .__recommended_container img {
  display: inline-block;
  max-width: 320px;
}
@media screen and (max-width: 1140px) {
  .js_about_us_page .__recommended_container {
    margin-top: 30px;
  }
}
.js_restaurant_page {
  padding-bottom: 30px;
}
.js_restaurant_page a {
  color: white;
}
.js_restaurant_page .__map {
  width: 100%;
}
.js_restaurant_page .__map iframe {
  width: 100%;
  height: 380px;
}
@media screen and (max-width: 1140px) {
  .js_restaurant_page .__map {
    margin-top: 30px;
  }
}
.js_restaurant_page .service_container {
  display: flex;
  flex-wrap: wrap;
}
.js_restaurant_page .service_item {
  margin-left: 20px;
  margin-bottom: 5px;
  width: 100%;
  max-width: 220px;
}
.js_restaurant_page .service_item .__image_container {
  width: 50px;
  border-radius: 70px;
  background-color: white;
  border: 5px solid #ff0000;
}
.js_restaurant_page .service_item .__image_container img {
  display: block;
  width: 50px;
  border-radius: 70px;
}
.js_restaurant_page .service_item .__name {
  margin-left: 10px;
}
.js_restaurant_page .gallery_container {
  display: flex;
  flex-wrap: wrap;
}
.js_restaurant_page .gallery_item {
  margin-left: 20px;
  margin-bottom: 5px;
  width: 100%;
  max-width: 220px;
  cursor: pointer;
}
.js_restaurant_page .gallery_item:hover .__image_container {
  border-color: #ff0000;
}
.js_restaurant_page .gallery_item .__image_container {
  width: 250px;
  border-radius: 10px;
  background-color: white;
  border: 5px solid #f7941d;
  transition: all 0.3s;
}
.js_restaurant_page .gallery_item .__image_container img {
  display: block;
  width: 250px;
  border-radius: 10px;
}
.js_restaurant_page .gallery_item .__name {
  margin-left: 10px;
}
.js_restaurant_page .gallery_item .__image--hidden {
  display: none;
}
.js_reservation_page {
  padding-bottom: 30px;
}
.js_reservation_page .reserved_dates_in_two_week {
  margin: 10px 0;
  padding: 10px 5px;
  border-radius: 3px;
  color: #333;
  background-color: #f7941d;
  font-size: 16px;
  line-height: 21px;
}
.js_weekly_menu_page {
  padding-bottom: 30px;
}
.js_weekly_menu_page .__day {
  margin-bottom: 15px;
  padding: 10px;
  color: white;
  background-color: #ff0000;
  font-size: 19px;
  line-height: 23px;
  border-bottom: 1px dashed white;
}
.js_weekly_menu_page .__product {
  padding-left: 10px;
}
.js_gtc_page a,
.js_pp_page a {
  color: white;
  text-decoration: underline;
}
.js_admin_login_page .middle_container {
  max-width: 600px;
  padding: 30px 0;
}
.js_admin_dashboard_page {
  padding-bottom: 30px;
}
.js_admin_reservation_page {
  padding-bottom: 30px;
}
.js_admin_reservation_page .create_reserved_date_form {
  max-width: 400px;
}
.js_admin_reservation_page hr {
  width: 100%;
}
.js_admin_reservation_page .__reserved_date {
  display: flex;
}
.js_admin_reservation_page .__reserved_date > div {
  flex: 1;
}
.js_admin_weekly_menu_page {
  padding-bottom: 30px;
}
.js_admin_weekly_menu_page .modify_weekly_menu_form textarea {
  width: 100%;
  max-width: 400px;
  height: 80px;
}
.js_admin_notice_page {
  padding-bottom: 30px;
}
.js_admin_notice_page .modify_notice_form textarea {
  width: 100%;
  max-width: 400px;
  height: 80px;
}
