@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  src: url('/fonts/fontawesome.ttf');
}

@font-face {
  font-family: BellotaText;
  src: url(/fonts/BellotaText-Regular.ttf);
}

@font-face {
  font-family: BellotaText;
  src: url(/fonts/BellotaText-Bold.ttf);
  font-weight: bold;
}

@font-face {
  font-family: BellotaText;
  src: url(/fonts/BellotaText-Italic.ttf);
  font-style: italic;
}

@font-face {
  font-family: BellotaText;
  src: url(/fonts/BellotaText-BoldItalic.ttf);
  font-weight: bold;
  font-style: italic;
}


html { margin:0; padding:0; scroll-behavior: smooth; }
body {COLOR: white; font-family: BellotaText, sans-serif; font-size: 18px; margin: 0; background-color: black; display: flex; flex-direction: column; min-height: 100vh; position: relative; }

body video.background {

  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;

}

header {

  position: fixed;
  z-index: 100;
  top: 0;
  text-align: center;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);


}

#headerinner {

  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;

}



#headerinner .logo img.img_desktop { height: 50px; display: inline-block; }
#headerinner .logo img.img_mobile { display: none; }

#links1 { text-align: center; flex: 1; padding: 0px 40px; }
#links2 { text-align: center; }
#links3 { display: none; }

#links1 a { display: inline-block; background-color: black; width: 75px; height: 75px; text-align: center; text-decoration: none; font-size: 13px; line-height: 75px; text-transform: lowercase; color: white; border: 1px solid white; border-radius: 50%; margin: 10px; transition: 0.5s; }

#links1 a:hover { background-color: white; color: #a08000;  }

#links2 a { display: inline-block; position: relative; text-align: center; margin: 0px 10px; height: 50px; }

#links2 a img { height: 100%; }

#basketcount {
  position: absolute;
  bottom: -5px;
  right: -5px;
  height: 20px;
  width: 20px;
  text-align: center;
  font-size: 15px;
  line-height: 20px;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background: red;
  z-index: 1;

}


main {

  flex: 1;
  z-index: 1;

}

main .container {

  padding: 0 100px;

}

div.page {

  width: 100%;
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;

}

#banner {

  position: relative;
  display: flex;
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: stretch;

  padding: 0px 20px;
  box-sizing: border-box;


}

#banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("/images/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation: fadeIn 10s forwards;
  animation-delay: 5s;
}

@keyframes fadeIn {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}



#banner_inner {

  flex: 1;
  display: block;
  position: relative;
  margin: 0 auto;
  text-align: center;

}

#banner_inner div:nth-child(1) {


  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid white;
  white-space: wrap;
  padding: 30px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  max-width: 400px;
  text-align: left;

}

#banner_inner div:nth-child(1) p {

  position: relative;
  padding-left: 30px;
  margin: 0 0 10px 0;

}

#banner_inner div:nth-child(1) p:before {

  content: "\f041";
  position: absolute;
  top: 0;
  left: 0;
  font-family: FontAwesome;
  font-size: 30px;

}

#banner_inner div:nth-child(1) a {

  position: relative;
  padding-left: 30px;
  text-decoration: none;

}

#banner_inner div:nth-child(1) a:before {

  content: "\f095";
  position: absolute;
  top: 0;
  left: 0;
  font-family: FontAwesome;
  font-size: 30px;

}



#banner_inner div:nth-child(2) { display: inline-block; text-align: center; padding: 0px; }

#banner_inner div:nth-child(2) .logo { width: 100%; max-width: 555px; display: block; margin: 0px auto 50px auto; }

#banner_inner div:nth-child(2) a { padding: 20px 40px; text-align: center; text-decoration: none; font-size: 20px; color: white; background-color: rgba(0, 0, 0, 0.5); border-radius: 50px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); display: block; margin: 10px auto; width: 100%; max-width: 500px; box-sizing: border-box; }

#banner_inner div:nth-child(3) { position: absolute; top: 0; right: 0; white-space: wrap; padding: 10px; background-color: rgba(0, 0, 0, 0.5); border-radius: 30px; backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); }


#banner_inner div img.icon { display: block; height: 50px; margin: 5px 0px; }



.margined {

  display: block;
  padding-top: 200px;
  margin-top: -200px;
  z-index: -1;
  pointer-events: none;

}

div.bookingcontainer {

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 50px;
  align-items: flex-start;


}

  div.booking {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
    position: relative;
    flex: 0 1 1000px;
  }

div.booking img.restaurant {
  width: 100%;
}

div.booking div.tableContainer {
  position: absolute;
  z-index: 1;
  transform-origin: left top;
  transform: scale(1) translate(-50%, -50%);
}

div.booking div.tableContainer img {width: 100%; }

div.booking div.tableContainer span {display: block; position: absolute; z-index: 1; text-align: center; top: 50%; left: 50%; transform: translate(-50%, -0.5vw); font-size: clamp(12px, 2vw, 25px); color: black; width: clamp(15px, 3vw, 30px); height:  clamp(15px, 3vw, 30px); font-weight: bold; line-height: clamp(12px, 2vw, 25px); border-radius: 50%; background-color: white; padding-top: clamp(1px, 0.3vw, 3px); box-sizing: border-box; pointer-events: none; }


div.bookingfields {
  width: 100%;
  flex: 1 0 400px;
  background: linear-gradient(to bottom, rgba(246, 227, 202, 0.1) 0%, rgba(0, 0, 0, 1) 50%, rgba(246, 227, 202, 0.1));
  box-sizing: border-box;
  border-radius: 20px;

  display: block;
  padding: 200px 20px 20px 20px;


}

div.bookingfields p.c, div.bookingfields input.button {
  margin: 10px 0px;
}


div.bookingfieldsinner {

  width: 100%;
  display: block;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;

}

div.bfibox {

  background-color: #F6E3CA;
  border-radius: 10px;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
  display: inline-block;


}



div.bfibig {

  width: 100%;
  margin: 10px 0px;

}


div.bfismall {

  width: calc(50% - 10px);
  margin: 10px 0px;

}

div.bfibig input, div.bfibig textarea, div.bfismall input {

  width: calc(100% - 20px);
  text-align: center;
  border: none;
  background: white;
  color: black;


}

div.bfibox::before {

  color: #9C948A;
  position: relative;
  display: block;
  content: "";
  width: 100%;
  margin: 0px auto 10px auto;
  font-size: 18px;
  text-align: left;

}

#bfi_date::before {
  content: "Дата и время бронирования";
}

#date {

  width: calc(100% - 40px);
  text-align: center;
  border: none;
  background: white;

}

#fromto {

  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: space-between;
  align-items: baseline;

}

div.fromto_text {

  font-size: 18px;
  color: #9C948A;

}

#fromtime,#totime {

  color: black;
  width: auto;
  text-align: center;
  border: none;
  background: white;
  font-size: 18px;

}

#fromtime option,#totime option {

  text-align: center;
  background: #F6E3CA;

}

#fromtime option:checked, #totime option:checked  {

  background: white;

}


#bfi_name::before {
  content: "ФИО";
}



#bfi_persons::before {
  content: "Гостей";
}

#bfi_phone::before {
  content: "Телефон";
}

#bfi_comment::before {
  content: "Комментарий";
}



footer {

  width: 100%;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  color: white;
  font-size: 12px;
  text-align: center;
  background-image: url("/images/bg_footer.png"), url("/images/bg_footer_2.png");
  background-repeat: no-repeat, no-repeat;
  background-size: contain, contain;
  background-position: 0% 0%, 100% 0%;


}

footer img {

  width: 25px;
  height: 25px;
  margin-right: 10px;
  vertical-align: middle;

}

footer a {
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: black;
  border: 1px solid white;
  border-radius: 30px;
  display: inline-block;
  margin: 10px;
  box-sizing: border-box;
}

div.gal_border {

  border: 1px solid white;
  border-radius: 20px;
  padding: 0px;
  margin: 20px 0px;
  background-color: black;

}

div.gal_border  h2 {

  text-align: left;
  margin: 5px 10px 20px 10px;

}

div.gal_border  p {

line-height: 1.3;
  margin: 0px 10px;
  font-size: 16px;

}


a {COLOR: white; font-weight: normal; text-decoration: underline; }
a:hover { text-decoration: none; }


p { text-align: left;  margin: 15px; line-height: 1.5; }

p.j { text-align: justify; }
p.l { text-align: left; font-weight: bold; }
p.c { text-align: center; font-size: 20px; }
p.r { text-align: right; font-style: italic; }

p.instalinks a {

  text-decoration: none;
  margin: 0px 20px;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid white;
  display: inline-flex;
  align-items: center;

}

p.instalinks a img {

  margin-right: 10px;

}


.expandable {
  position: relative;
}

.expandable p {
  max-height: unset;
}

.expandable input[type="checkbox"], div.menupoint div.menupointtext div.menudescription input[type="checkbox"] {
  display: none;
}

.expandable input:checked ~ p {
  max-height: unset;
}

.arrow {
  display: none;
}

.arrow::after {
  content: "";
}

input:checked ~ .arrow::after {
  content: "";
}







img.section {

  margin: 0px;
  max-width: 600px;


}


a.gal_link {

  position: relative;
  display: inline-block;
  margin: 30px 0px 0px 0px;
  padding: 10px 40px 10px 10px;
  border-radius: 10px;
  box-sizing: border-box;
  color: white;
  font-size: 15px;
  text-decoration: none;
  color: black;
  background-color: #EFC183;

}

a.gal_link:after {

  content: "\f078";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px;
  font-family: FontAwesome;
  font-size: 15px;
  color: black;

}

div.galery_visible {

  text-align: center;

}

div.galery_invisible {

  text-align: center;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;

}



div.galerycard {

  position: relative;
  display: inline-block;
  margin: 20px;
  vertical-align: top;
  width: calc(33% - 20px);
  max-width: 425px;
  min-width: 300px;

}

div.galerycard p.description {  font-size: 16px; text-align: justify; }
div.galerycard p.description::first-line { font-size: 30px; margin-bottom: 20px; }

div.galerycard img { width: 75%; display: block; margin: 0px auto 10px auto; }

img.menu_header {

  max-width: 694px;
  width: 100%;
  margin: 50px auto 30px auto;
  display: block;

}

.menu {
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  max-height: 0;
  transition: 0.5s;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 0px;
}


#questionmenu {
  position: relative;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  transition: 0.5s;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 0px;
}

div.menu_border {

  border: 1px solid white;
  border-radius: 20px;
  max-width: 1000px;
  padding: 100px;
  box-sizing: border-box;
  margin: 20px auto;
  background-color: black;
  overflow: hidden;
  text-align: left;
  background-image: url("/images/spacer.gif");
  background-size: cover;
  background-position: 100% 50%;
  background-repeat: no-repeat;
  position: relative;

}

div.menu_border a.gal_link {

  font-size: 30px;
  width: 100%;
  max-width: 300px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  border: none;
  margin: 0px;
  padding: 0px;
  background: none;
  color: white;

}

div.menu_border a.gal_link:after {
  color: white;

}


.menu div.menu_section {

  text-align: center;
  max-height: 0;
  transition: 0.5s;
  overflow: hidden;
  margin-top: 0px;
  margin-bottom: 0px;

}

.menu a.section_header {

  position: relative;
  display: block;
  margin: 10px auto;
  max-width: 700px;
  width: 100%;
  text-align: center;
  padding: 10px 130px 10px 10px;
  border-radius: 30px;
  box-sizing: border-box;
  color: white;
  border: 1px solid white;
  font-size: 25px;
  text-decoration: none;
  background-color: #1a1a1a;

}

.menu a.section_header:after {

  content: "\f078";
  display: block;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px;
  height: 100%;
  width: 120px;

  border-radius: 30px;
  box-sizing: border-box;
  border: 1px solid white;
  font-family: FontAwesome;
  font-size: 25px;
  color: white;

}



div.menupoint {  max-width: 400px; overflow: hidden; display: inline-flex; margin: 20px; flex-direction: row; justify-content: space-between; gap: 20px; }

div.menupoint div.menupointimage { text-align: center;  flex: 1 1 200px; position: relative; }

div.menupoint div.menupointimage img {
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid white;
  box-sizing: border-box;
}

div.menupoint div.menupointimage a {

  position: absolute;
  bottom: 0px; right: 0;
  font-size: 30px;
  font-family: FontAwesome;
  text-decoration: none;
  color: white;

}

div.menupoint div.menupointtext {

  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: space-between;
  min-width: 200px;

}


div.menupoint div.menupointtext div.menuline {

  text-align: left;
  line-height: 1;
  font-size: 25px;

}

div.menupoint div.menupointtext div.menudescription {

  font-size: 14px;
  flex: 1;

  text-align: justify;
  hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;

}


div.menupoint div.menupointtext div.menudescription span {

  display: block;
  max-height: 90px;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

div.menupoint div.menupointtext div.menudescription input:checked ~ span {
  max-height: 1000px;
}

div.menupoint div.menupointtext div.menudescription .arrow {

  display: block;
  margin: 5px auto;
  cursor: pointer;
  text-align: center;

}

div.menupoint div.menupointtext div.menudescription .arrow::after {
  content: "открыть всё \f063";
  font-family: FontAwesome, BellotaText, "Times New Roman", serif;
  font-size: 14px;
}

div.menupoint div.menupointtext div.menudescription input:checked ~ .arrow::after {
  content: "";
}




div.menupoint div.menupointtext div.price {

  height: 40px;
  padding: 0;
  text-align: left;

}

div.menupoint div.menupointtext div.price span.p {

  font-size: 30px;
  margin: 0;


}

div.menupoint div.menupointtext div.price span.s {

  font-size: 15px;
  margin: 0 5px 0 0;

}

div.menupoint div.menupointtext div.pricebuttons {

  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  justify-content: space-around;
  border-radius: 15px;
  height: 30px;
  width: 80px;
  background: white;
  padding: 0;

}

div.menupoint div.menupointtext div.pricebuttons a {

  font-family: FontAwesome;
  font-size: 15px;
  color: #717171;
  text-decoration: none;

}

div.menupoint div.menupointtext div.pricebuttons span {

  padding: 0px 5px;
  border-left: 1px solid #717171;
  border-right: 1px solid #717171;
  color: #717171;
  font-size: 20px;
  font-variation-settings: 'wght' 500;

}




INPUT, SELECT, TEXTAREA {  font-size: 16px; font-family: BellotaText, sans-serif;  }



INPUT {

  width: 100%;
  height: 40px;
  box-sizing: border-box;
  border-radius: 10px;
  border:  2px solid white;
  text-align: left;
  color: white;
  font-size: 18px;
  padding: 13px;
  background: black;
  margin: 10px;
  max-width: 400px;

}

#page3 input {

  width: 100%;
  max-width: 500px;

}

#ddate, #dtime {

  height: 40px;
  vertical-align: top;
  box-sizing: border-box;
  margin: 10px 1px;
  width: 240px;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 10px;
  font-size: 14px;
  background: black;
  color: white;

}


#ddate {

  margin: 10px 0px;

}

#dtime {

  margin: 10px 0px 10px 10px;

}


div.orderlinewrapper {

  position: relative;

}

INPUT.orderinput {

  width: 100%;
  margin: 0px;
  padding: 0px 50px 0px 20px;
  box-sizing: border-box;
  color: #EFC183;
  border: none;

}

INPUT.orderinput::placeholder {

  color: #EFC183;

}

button.promocodebutton {

  position: absolute;
  top: 12px;
  right: 10px;
  width: 24px;
  height: 24px;
  background-image: url("/images/enter.png");
  background-size: contain;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
  border: none;

}

a.orderbutton {
  position: relative;
  display: block;
  padding: 10px 20px;
  box-sizing: border-box;
  margin: 10px;
  background: #EFC183;
  color: black;
  font-size: 20px;
  font-weight: normal;
  border-radius: 10px;
  text-decoration: none;
  text-transform: none;
  text-align: left;
  width: 100%;
  max-width: 500px;
  overflow: hidden;
}

a.orderbutton span {

  font-family: FontAwesome;
  margin-right: 10px;

}

a.orderbutton:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 45px;
  transform: skewX(-45deg);
  animation: flareAnimation;
  left: -150%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
  animation: flareAnimation 3s infinite linear;
}

@keyframes flareAnimation {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}


a.ordersupportbutton {
  position: relative;
  display: block;
  padding: 10px;
  box-sizing: border-box;
  margin: 20px auto;
  background-color: #EFC183;
  color: white;
  font-size: 20px;
  font-weight: normal;
  border-radius: 20px;
  text-decoration: none;
  text-align: center;
  width: 100%;
  max-width: 300px;
}

a.orderlistbutton {

  font-family: FontAwesome;
  margin: 0px 5px;
  font-size: 20px;
  color: white;
  text-decoration: none;
  cursor: pointer;


}

a.orderlistbutton:hover {

  color: #EFC183;

}

a.orderlistbuttongrey {

  font-family: FontAwesome;
  margin: 0px 2px;
  font-size: 12px;
  color: white;
  text-decoration: none;
  cursor: pointer;
  padding: 5px 10px;
  background: #404040;

}

a.orderlistbuttongrey:hover {

  color: #EFC183;

}


INPUT.middle {

  width: 200px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 20px;
  border:  2px solid white;
  text-align: left;
  color: white;
  font-size: 12px;
  padding: 13px;
  background: black;
  margin: 10px;
  vertical-align: middle;


}


INPUT.short {

  width: 100px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 10px;
  border:  2px solid white;
  text-align: left;
  color: white;
  font-size: 18px;
  padding: 13px;
  background: black;
  margin: 10px;

}



INPUT.box2 {

  width: 20px;
  height: 20px;
  border-radius: 0;
  border: none;
  font-size: 18px;
  padding: 0;
  margin: 5px;

}

 input[type="checkbox"] {

  width: 40px !important;
  height: 40px !important;
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding: 0px;
  border-radius: 20px;
  border: 5px solid #F6E3CA;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  background: transparent;
  font-size: 40px;
  line-height: 40px !important;


}

input[type="checkbox"]:checked {

  background:#F6E3CA;

}

input[type='checkbox']:checked:after {
  content: '\2713';
  color:black;
}



input.hiddenbox, input.hiddenbox2, input.hiddenbox3 {
  display: none;
}

input.hiddenbox + label {
  display: inline-block;
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  padding: 5px 40px;
  background: black;
  color: black;
  margin: 10px;
  cursor: pointer;
  transition: 1s;
  border: none;
  background: #EFC183;

}

input.hiddenbox:checked + label {
  background: white;
  color: black;
}


input.hiddenbox2 + label {
  display: inline-block;
  max-width: 242px;
  width: calc(50% - 15px);
  box-sizing: border-box;
  border-radius: 10px;
  text-align: center;
  font-size: 14px;
  padding: 11px;
  border: 2px solid white;
  color: #EFC183;
  margin: 0px 0px 0px 10px;
  cursor: pointer;
  transition: 1s;
  line-height: 1;
  min-height: 55px;
  vertical-align: top;

}

input.hiddenbox2:checked + label {
  color: black;
  background-color: #EFC183;

}


input.hiddenbox2 + label:first-of-type {

  margin: 0px;

}


input.hiddenbox3 + label {

  font-size: 20px;
  font-weight: normal;
  display: block;
  border: none;
  text-align: left;
  padding: 20px 20px 20px 80px;
  box-sizing: border-box;
  width: 100%;
  max-width: 400px;
  margin: 10px 0px;
  border-radius: 10px;
  background-image: url("/images/spacer.gif");
  background-position: 20px 50%;
  background-size: auto 40px;
  background-repeat: no-repeat;
  cursor: pointer;

}

input.hiddenbox3:checked + label {

  font-weight: bold;
  border: 1px solid #e0e0e0;


}



INPUT.button {

  width: 100%;
  max-width: 400px;
  height: auto;
  padding: 15px 0px;
  border-radius: 10px;
  text-align: center;
  color: black;
  font-size: 25px;
  background: #EFC183;
  margin: 10px;
  cursor: pointer;
  transition: 1s;
  border: none;


}

INPUT.button:hover {

  background: ##EABD80;
  color: white;

}

INPUT.button2 {

  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 25px;
  border: none;
  text-align: center;
  text-transform: uppercase;
  color: white;
  font-size: 18px;
  padding: 7px;
  background: #EFC183;
  margin: 10px;
  cursor: pointer;
  transition: 1s;

}

INPUT.button2:hover {

  background: ##EABD80;


}

SELECT {

  width: 300px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 5px;
  border:  2px solid white;
  text-align: left;
  color: white;
  font-size: 12px;
  background: black;
  margin: 10px;
  outline:none;

}

SELECT.short {

  width: 90px;
  height: 40px;
  box-sizing: border-box;
  border-radius: 5px;
  border:  2px solid white;
  text-align: left;
  color: white;
  font-size: 12px;
  background: black;
  margin: 10px 0 10px 10px;
  vertical-align: middle;

}



TEXTAREA {

  width: 100%;
  max-width: 500px;
  height: 70px;
  box-sizing: border-box;
  border-radius: 10px;
  border:  2px solid white;
  text-align: left;
  color: white;
  padding: 10px;
  background: black;
  margin: 10px 0px;

}



HR {
  color:            white;
  background-color: white;
  height:           1px;
  border-width:     0;
  padding:          0;
  margin:           10px 0 10px 0;
  width:            99%;
}



h1 {
  COLOR: white;
  font-size: 40px;
  text-align: center;
  font-weight: bold;

}




h2 {
  COLOR: white;
  font-size: 40px;
  text-align: center;

}



h3 {
  COLOR: white;
  font-size: 25px;
  text-align: left;

}

#topmenumobilesmall { display: flex; justify-content: left; align-items: center; width: 100px; height: 60px; text-align: center; text-decoration: none;  }
#topmenumobilesmall img { width: 40px; }

#topmenumobile {position: fixed; top: 0px; left: -100%; width: 100%; max-width: 320px; height: 100%;  z-index: 109; background: linear-gradient(to bottom, #000000, #404040);  overflow-y: auto; transition: 0.5s linear; padding: 20px;  text-align: center; font-size: 20px; color: white; }

#topmenumobilesmallback { display: inline-block; text-decoration: none; font-family: FontAwesome; font-size: 50px; color: white;  vertical-align: middle; }

#topmenumobile .icon {

  width: 75px; height: 75px;
  display: inline-block;
  margin: 5px auto;


}



#topmenumobile .logo {

  width: 200px;
  display: inline-block;
  margin: 0px 10px;
  vertical-align: middle;

}

#topmenumobile a.phone {


display: block; padding: 10px; border: 1px solid white; box-sizing: border-box; border-radius: 5px; text-decoration: none; color: white; margin: 20px auto; width: 100%; text-align: center;

}

#topmenumobile a.leftmenu_link {

  display: block;
  width: 100%;
  margin: 5px 0px;
  text-decoration: none;
  color: white;
  font-size: 30px;
  text-align: left;

}

#changepasswordform {

  max-width: 900px;
  width: 100%;
  margin: 10px;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;

}

#changedataform {

  max-width: 900px;
  width: 100%;
  margin: 10px;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;

}

#changepasswordform input, #changedataform input { margin: 5px 0px}



#orderlist img { border-radius: 10px; }

.orderoptions { background: rgba(0, 0, 0, 0.2); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);  border-radius: 10px; padding: 5px 20px; box-sizing: border-box; margin: 30px 0px; font-size: 20px; width: 100%; max-width: 500px; border-spacing: 10px;border-collapse: separate; }

td.ordername { padding-left: 20px; text-align: left; }
td.ordername span { font-size: 20px; font-weight: bold; display: block; margin-bottom: 10px; }
td.ordername span a { font-weight: bold; text-decoration: none; border-bottom: 1px dotted gray; }

td.orderquant { white-space: nowrap; padding: 0px 0px 0px 10px; font-size: 20px; }
td.orderquant a { text-decoration: none; font-weight: bold; }
td.orderquant span { padding: 0px 10px; font-weight: bold; }

div.orderblock {

  display: block;
  position: relative;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  margin: 10px 0px;
  padding: 20px 50px 20px 20px;
  box-sizing: border-box;
  font-weight: bold;
  font-size: 14px;
  text-align: left;

}


div.orderblock a {

  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  z-index: 1;

}

div.orderblock a span {

  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: FontAwesome;
  text-decoration: none;

}

#pickuptypetext {

  color: #717171;

}






@media screen and (max-width: 1320px) {


  #headerinner {

    padding: 0px 20px;

  }


  #headerinner .logo {

    text-align: left;

  }



  #links1 {

    display: none;

  }

  #links2 { text-align: right; flex: 1 1 auto;  }

  #links2 a { width: 50px; height: 50px; font-size: 30px; line-height: 50px; border-radius: 25px; margin: 0 5px; }

  #links3 {

    display: block;
    text-align: center;
    z-index: 1;
    width: 100%;
    padding: 0 10px;
    box-sizing: border-box;
    overflow-y: auto;

  }

  #links3 div {

    white-space: nowrap;

  }

  #links3 a { display: inline-block; background-color: black; width: 60px; height: 60px; text-align: center; text-decoration: none; font-size: 13px; line-height: 60px; text-transform: lowercase; color: white; border: 1px solid white; border-radius: 30px; margin: 5px; transition: 0.5s; }

  #topmenumobilesmall {

    flex: 1 1 auto;


  }



  #banner_inner div:nth-child(1) {

    display: none;

  }


div.bookingcontainer {

  display: block;


}

  div.bookingfields {

    display: block;
    padding: 20px;
    margin-top: 20px;


  }

  main .container {

    padding: 0 40px;

  }

}


@media screen and (max-width: 1000px) {

  .menu a.section_header {

    margin: 10px 0px;

  }

  div.menupoint {

    flex-direction: column;
    flex: 0 1 200px;
    gap: 10px;

  }

  div.menupoint div.menupointimage {

    width: 100%;
    flex: 1 1 auto;

  }

  div.menupoint div.menupointimage img {

    width: 100%;
    height: auto;

  }

  div.menupoint div.menupointtext  {

   flex: 1 0 auto;
    min-width: unset;

  }


  div.menupoint div.menupointtext div.menuline {

    text-align: center;
    font-size: 20px;

  }

  div.menupoint div.menupointtext div.menudescription, div.menupoint div.menupointtext div.price {

    text-align: center;

  }

  div.menupoint div.menupointtext div.pricebuttons {

    margin: 0 auto;

  }





}


@media screen and (max-height: 900px) {

  header {

    position: sticky;

  }

  #banner {

    height: calc(100vh - 130px);

  }

}


@media screen and (max-width: 800px) {

  #headerinner .logo img.img_desktop { display: none;  }
  #headerinner .logo img.img_mobile { height: 50px; display: inline-block; }
  #headerinner .logo img.small_mobile { height: 25px; }

  #links2 a { width: 30px; height: 30px; font-size: 20px; line-height: 30px; border-radius: 15px;  }






  main .container {

    padding: 0 20px;

  }

  img.section {

    display: block;
    margin: 0px;
    width: 100%;
    max-width: unset;


  }


  div.menu_border {

     background-size: cover;

  }

}

@media screen and (max-width: 500px) {

  main .container {

    padding: 0 10px;

  }

  div.menupoint {

    flex: 0 1 400px;

  }


  #topmenumobilesmall img {

    width: 20px;

  }



  div.gal_border {

    padding: 0px;

  }

   .expandable p {
    max-height: 90px;
    overflow: hidden;
    transition: max-height 0.3s ease;
     hyphens: auto;
     -moz-hyphens: auto;
     -webkit-hyphens: auto;
     -ms-hyphens: auto;
  }

  .expandable input:checked ~ p {
    max-height: 1000px;
  }

  .arrow {
    display: block;
    margin: 5px auto;
    cursor: pointer;
    text-align: center;
  }

  .arrow::after {
    content: "открыть всё \f063";
    font-family: FontAwesome, BellotaText, "Times New Roman", serif;
    font-size: 14px;
  }

  input:checked ~ .arrow::after {
    content: "";
  }





}
