* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  cursor: none !important;
}

body {
  cursor: default;
}

.df_center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.df_spbtween {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.df_sparnd {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.ovhidden {
  overflow: hidden !important;
  touch-action: none;
  -ms-touch-action: none;
}

.width_center {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.dpnone {
  display: none !important;
}

.vis_hidden {
  opacity: 0 !important;
  visibility: hidden !important;
}

.cursor {
  position: fixed;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  transform: translateX(-50%) translateY(-50%);
  pointer-events: none;
}

.cursor:nth-child(1) {
  background-color: rgba(82, 173, 214);
  z-index: 10102;
}

.cursor:nth-child(2) {
  background-color: rgb(53, 70, 94);
  z-index: 10101;
}


#topwrapper {
  display: none;
}

.topwrapper_container {
  width: 100%;
  padding: 0 3%;
  position: absolute;
  z-index: 1010;
}

.navtopwrapper_container {
  position: fixed;
  top: 0;
  transition: .5s;
  width: 100%;
  padding: 0 3%;
  z-index: 1010;
  background: #fff;
  -webkit-box-shadow: 0 6px 5px -5px rgba(0, 0, 0, .42);
  -moz-box-shadow: 0 6px 5px -5px rgba(0, 0, 0, .42);
  box-shadow: 0 6px 5px -5px rgba(0, 0, 0, .42);
}

.mainlogo .logo {
  width: 300px;
  display: block !important;
  margin: 20px 0 0;
  transition: .5s;
  padding: 10px 0;
  height: auto !important;
}

.hamburger_bar {
  width: 45px;
}

.hb_line {
  width: 100%;
  background: #fff;
  margin: 0 0 8px 0;
  height: 2px;
  transition: .3s;
}

.active .hb_line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.active .hb_line:nth-child(2) {
  transform: translateY(-2px) rotate(135deg);
}

.active .hb_line:nth-child(3) {
  opacity: 0;
  visibility: hidden;
}

.hb_wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  background: rgba(17, 22, 31, .8);
  width: 400px;
  height: 100vh;
  z-index: 1001;
  flex-direction: column;
  transition: .5s ease-in-out;
}

.openmenu_wrapper {
  right: 0 !important;
}

.hb_wrapper .lang_wrapper {
  display: block !important;
  margin: 0 0 100px 0 !important;
}

.hb_wrapper .lang_wrapper .lang {
  margin: 0 10px;
}

.hb_menu {
  margin: 0;
  padding: 0;
  text-align: center;
}

.hb_cat {
  list-style-type: none;
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  margin: 0 0 20px 0;
  transition: .5s;
}

.hb_cat:hover {
  color: rgba(82, 173, 214);
}

.select_wrapper {
  text-align: center;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  background-image: url(../images/page-bg.webp);
  background-size: 100%;
  background-attachment: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.logo {
  margin: 10px 0;
  width: 300px;
  height: 120px;
  opacity: 1;
  visibility: visible;
  transition: .3s ease-in-out;
}

.lang_wrapper {
  float: right;
  margin: 20px 20px 0 0;
}

.lang {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.select_choice {
  margin: 0 auto;
  width: 80%;
  height: 80vh;
  transition: 1s;
}

.choice_box {
  width: 50%;
  height: 100%;
  position: relative;
  transition: all .6s ease-in-out;
  overflow: hidden;
}

.choice_box:hover {
  width: 57%;
}

.choice_box::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, .3);
}

.cb_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 3s;
  transition-delay: 1s;
}

#bgvideo {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
}

.video_overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url('../images/dots.webp');
  opacity: 0;
  top: 0;
  left: 0;
}

.choice_box_head {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  color: #FFFFFF;
  padding: 80px max(10vw, 80px);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  transition: all 0.7s ease-in-out;
}

.choice_box_head_container {
  width: 32vw;
}

.choice_box_title {
  font-size: 2.5em;
  color: rgba(255, 255, 255, .5);
  transition: all .6s ease-in-out;
}

.choice_box_text {
  color: rgba(255, 255, 255, .5);
  transition: all .6s ease-in-out;
  padding: 0 0 20px 0;
}

.choice_box_button_wrapper {
  color: rgba(82, 173, 214);
  font-size: 1.1em;
  font-weight: bold;
}

.choice_box_btn {
  margin: 0 10px 0 0;
}

.choice_box:hover .choice_box_title,
.choice_box:hover .choice_box_text {
  color: #fff;
}

.restaurant_head {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  overflow: hidden;
  padding: 50px 0;
}

.welcome_text {
  font-size: 2.5em;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  font-family: 'Roboto', sans-serif !important;
  width: max-content;
}

.welcome_slogan {
  color: rgba(82, 173, 214);
  font-family: 'Roboto', sans-serif !important;
  font-weight: bold;
  letter-spacing: 1px;
  margin-top: -10px;
  font-size: .9em;
  text-transform: uppercase;
}

.welcome_btn,
.eh_btn,
.ec_box_btn {
  color: #fff;
  border: 2px solid rgba(82, 173, 214);
  background: rgba(82, 173, 214);
  width: max-content;
  margin: 15px auto;
  padding: 5px 10px;
  letter-spacing: 1px;
  transition: .5s;
  border-radius: 3px;
  font-size: .9em;
}

.welcome_fish {
  width: 400px;
  margin: 0 auto;
  position: absolute;
  top: -90px;
  right: 50%;
  transform: rotate(15deg) translateX(50%);
  z-index: -1;
  animation: showUp 2s ease;
}

@keyframes showUp {
  from {
    top: -100%
  }

  to {
    top: -90px;
  }
}

.fish {
  opacity: 1 !important;
}

.welcome_btn:hover,
.eh_btn:hover,
.ec_box_btn:hover {
  background: rgb(53, 70, 94);
  border: 2px solid rgb(53, 70, 94);
}

.select_container {
  margin: -20px 0 0;
  position: relative;
  display: none;
  transition-delay: 2s;
}

.select_container:before {
  content: '';
  height: 10px;
  width: calc(100% - 30px);
  position: absolute;
  z-index: 999;
  top: -5px;
  background-color: #f2f6f7;
  opacity: 0.2;
  left: 15px;
}

.mouse_wrapper {
  position: relative;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  height: 74px;
  width: 74px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}

.mouse_wrapper:after {
  content: '';
  width: 90px;
  height: 44px;
  opacity: 0.15;
  border-radius: 1000px 1000px 0 0;
  position: absolute;
  top: -18.6%;
  background-color: #f2f6f7;
  z-index: -2;
  left: 50%;
  transform: translateX(-50%);
}

.mouse {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
}

.wwr {
  padding: 50px 0;
  box-shadow: 0 6px 5px -5px rgba(0, 0, 0, .42);
  margin: -70px 0 0;
  background: #fff;
  position: relative;
}

.wwr_head {
  width: 45%
}

.wwr_images {
  width: 50%;
  height: 400px;
  position: relative;
}

.wwr_image {
  height: 400px;
  margin: 0 20px 0 0px;
  object-fit: cover;
  object-position: top;
  min-width: 300px;
  border-radius: 10px;
  border: 15px solid #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.header {
  text-align: center;
  font-size: 2em;
  letter-spacing: 4px;
  padding: 50px 0 80px 0;
  color: rgba(82, 173, 214);
  position: relative;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #000;
}

.wwr_title {
  padding: 0 0 80px 0 !important;
}

.wwr_text p {
  font-family: sans-serif;
  text-align: justify;
}

.menu {
  width: 100%;
  height: 1000px;
  background: rgba(82, 173, 214);
}

.popular_dishes {
  background: #fff;
  -webkit-box-shadow: 0px -6px 15px -11px #000000;
  box-shadow: 0px -6px 15px -11px #000000;
}

.popular_dishes_container {
  text-align: center;
  padding: 0 0 40px 0;
}

.pd_box {
  display: inline-block;
  vertical-align: top;
  margin: 0 30px 50px 30px;
}

.pd_box_container {
  width: 500px;
}

.pd_head {
  width: 300px;
}

.pd_title {
  font-size: 1.5em;
  color: rgba(82, 173, 214);
  font-weight: bold;
}

.pd_text {
  color: #000;
  text-align: center;
  margin: 0 auto;
  font-size: .85em;
}

.pd_img {
  width: 150px;
  margin: 0 20px 0 0;
  transform: scale(1.2);
}

.albumres,
.albumeve {
  -webkit-box-shadow: inset 0 1px 38px rgb(0 0 0 / 12%);
  box-shadow: inset 0 1px 38px rgb(0 0 0 / 12%);
  padding: 0 0 50px 0;
  background: #eee;
}

.album_container {
  margin: 0 auto;
}

.events_head {
  display: none;
}

.eh_background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 1;
  width: 650px;
}

.events_head_container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.eh_title {
  font-size: 2.1em;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 2px;
}

.eh_text {
  margin: 10px 0 0;
}

.eh_text h4 {
  color: rgba(82, 173, 214);
  margin: 0;
  font-weight: 900;
  font-size: .9em;
}

.line {
  width: 2px;
  height: 10px;
  background: #fff;
  margin: 0 5px;
}

.ec_box {
  margin: 150px 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  padding: 20px;
  background: #fff;
  border-radius: 3px;
}

.ec_box_L {
  position: relative;
  left: -200px;
}

.ec_box_R {
  flex-direction: row-reverse;
  position: relative;
  right: -200px;
}

.ec_box_img {
  width: 700px;
  height: 500px;
  min-width: 700px;
  object-fit: cover;
}

.ec_box_head {
  padding: 0 20px 20px 20px;
}

.ec_box_title {
  color: rgba(82, 173, 214);
  font-size: 1.8em;
  font-weight: bold;
  text-align: center;
  margin: 0 0 20px 0;
}

.ec_box_text {
  font-family: sans-serif;
  text-align: justify;
  margin: 0 0 20px 0;
}


.aboutus_title {
  padding-top: 30px !important;
}

.aboutus_subtitle {
  text-align: center;
  color: rgba(188, 163, 98, 1);
  font-size: 1.5em;
  font-family: 'Dancing Script', cursive !important;
  margin: -20px 0 15px 0;
}

.aboutus_text p {
  font-family: sans-serif;
  text-align: justify;
}

.aboutus_images {
  text-align: center;
}

.aboutus_img {
  width: 550px;
  height: 300px;
  object-fit: cover;
  display: inline-block;
  vertical-align: top;
  margin: 20px;
  filter: grayscale();
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: .5s;
  border-radius: 3px;
}

.aboutus_img:hover {
  filter: none;
}

#footer {
  display: none;
}

#map {
  height: 700px;
  position: relative;
  margin: 100px 0 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: none;
}

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane>svg,
.leaflet-pane>canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-control-attribution a {
  display: none;
}

.leaflet-container {
  overflow: hidden
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none
}

.leaflet-tile::selection {
  background: transparent
}

.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast
}

.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block
}

.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  touch-action: none;
  touch-action: pinch-zoom
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4)
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden
}

.leaflet-tile-loaded {
  visibility: inherit
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800
}

.leaflet-overlay-pane svg {
  -moz-user-select: none
}

.leaflet-pane {
  z-index: 400
}

.leaflet-tile-pane {
  z-index: 200
}

.leaflet-overlay-pane {
  z-index: 400
}

.leaflet-shadow-pane {
  z-index: 500
}

.leaflet-marker-pane {
  z-index: 600
}

.leaflet-tooltip-pane {
  z-index: 650
}

.leaflet-popup-pane {
  z-index: 700
}

.leaflet-map-pane canvas {
  z-index: 100
}

.leaflet-map-pane svg {
  z-index: 200
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 999;
  pointer-events: none
}

.leaflet-top,
.leaflet-bottom {
  bottom: 30px
}

.leaflet-right,
.leaflet-left {
  right: 0
}

.leaflet-control {
  float: left;
  clear: both
}

.leaflet-right .leaflet-control {
  float: right
}

.leaflet-top .leaflet-control {
  margin-top: 10px
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px
}

.leaflet-left .leaflet-control {
  margin-left: 10px
}

.leaflet-right .leaflet-control {
  margin-right: 10px
}

.leaflet-fade-anim .leaflet-tile {
  will-change: opacity
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  transition: opacity .2s linear
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform .25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform .25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform .25s cubic-bezier(0, 0, 0.25, 1)
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden
}

.leaflet-interactive {
  cursor: pointer
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing
}

.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane>svg path,
.leaflet-tile-container {
  pointer-events: none
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane>svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  pointer-events: auto
}

.leaflet-container {
  background: #ddd;
  outline: 0
}

.leaflet-container a {
  color: #0078a8
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5)
}

.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif
}

.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px
}

.leaflet-bar a,
.leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block
}

.leaflet-bar a:hover {
  background-color: #f4f4f4
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: 0
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb
}

.leaflet-touch .leaflet-bar a {
  width: 50px;
  height: 50px;
  line-height: 50px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px
}

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px
}

.leaflet-touch .leaflet-control-zoom-in,
.leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px
}

.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px
}

.leaflet-control-layers-toggle {
  background-image: url(../images/layers.webp);
  width: 36px;
  height: 36px
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(../images/layers-2x.webp);
  background-size: 26px 26px
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px
}

.leaflet-control-layers label {
  display: block
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px
}

.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333
}

.leaflet-control-attribution a {
  text-decoration: none
}

.leaflet-control-attribution a:hover {
  text-decoration: underline
}

.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
  font-size: 11px
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: 0;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5)
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: 0;
  margin-top: -2px
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box
}

.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4;
  width: 150px !important;
}

.leaflet-popup-content p {
  margin: 18px 0
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4)
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: 0;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999
}

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666
}

.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4)
}

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: ""
}

.leaflet-tooltip-bottom {
  margin-top: 6px
}

.leaflet-tooltip-top {
  margin-top: -6px
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff
}

.leaflet-tooltip-left {
  margin-left: -6px
}

.leaflet-tooltip-right {
  margin-left: 6px
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px
}


.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff
}


.contact {
  background-image: url(../images/contactbg.webp);
  height: 1000px;
  background-size: cover;
  background-position: center;
}

.contact_container {
  height: 720px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.contact_form {
  background: #fff;
  height: 100%;
  width: 800px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.form_box {
  margin: 5px 0;
  justify-content: flex-start !important;
}

.form_title {
  display: block;
  font-size: .9em;
  font-family: sans-serif;
  font-weight: bold;
  margin: 0 0 0 5px;
}

.form_input,
.form_textarea {
  width: 100%;
  padding: 8px 10px;
  outline: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: sans-serif;
}

.form_textarea {
  max-height: 120px;
  min-height: 100px;
  max-width: 420px;
  min-width: 420px;
  font-size: .9em;
  font-family: sans-serif;
}

.checkbox .form_title {
  font-weight: normal !important;
  width: max-content;
}

.form_btn {
  text-align: center;
  background: rgb(82, 173, 214);
  padding: 10px 0;
  color: #fff;
  margin: 10px 0;
  transition: .5s;
}

.form_btn:hover {
  background: rgb(53, 70, 94);
}

.contact_profil {
  background-image: url(../images/plokami.webp);
  width: 400px;
  height: 100%;
  -webkit-border-top-right-radius: 5px;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-topright: 5px;
  -moz-border-radius-bottomright: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.contact_profil_container {
  text-align: center;
}

.cp_logo {
  width: 200px;
}

.cp_title {
  color: #fff;
  font-size: 1.5em;
  font-weight: bold;
}

.cp_box {
  margin: 10px 0;
  font-size: 1.2em;
  text-decoration: none !important;
  justify-content: flex-start !important;
  padding-left: 50px;
  color: #fff;
}

.cp_box:hover .cp_box_title {
  color: aqua;
}

.cp_box:hover .cp_box_icon {
  color: aqua;
}

.cp_box_icon {
  font-size: 1.2em;
  color: #fff;
  font-family: sans-serif;
}

.cp_box_title {
  color: #fff;
  margin: 0 0 0 5px;
  font-family: sans-serif;
}

.workshift_title {
  font-size: 2em;
  color: #fff;
  margin: 20px 0 0;
}

.mrgn0 {
  margin: 0 !important;
}

.scroll_btn {
  border: 2px solid rgb(82, 173, 214);
  width: max-content;
  position: fixed;
  right: 40px;
  bottom: 40px;
  padding: 10px 8px;
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 1000;
  display: none;
}

.scroll_btn svg {
  color: rgb(82, 173, 214);
}

.uk-icon:not(.uk-preserve) [stroke*="#"]:not(.uk-preserve) {
  stroke: currentcolor;
  stroke-width: 2;
}

.socials {
  position: fixed;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  z-index: 1000;
}

.social_item {
  text-decoration: none !important;
  color: rgba(53, 70, 94, .4);
  display: block;
  margin: 0 0 50px;
}

.social_item:hover {
  color: rgba(53, 70, 94, 1) !important;
}

.social_item svg {
  width: 25px;
}

.qrmenu {
  padding: 0 0 20px;
}

.qrmenu_container {
  display: flex;
  height: 80vh;
  padding: 0 100px;
}

.menu_bar {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 100%;
  overflow: hidden;
}

.menu_bar_container {
  text-align: center;
  width: 125px;
  height: 100%;
  overflow-y: scroll;
  margin-right: -5px;
}

.mb_list {
  width: 80%;
  margin: 20px auto;
}

.mb_list_icon {
  width: 40px;
  filter: invert(59%) sepia(99%) saturate(274%) hue-rotate(155deg) brightness(89%) contrast(87%);
}

.mb_list_title {
  font-size: 0.8em;
}

.main {
  height: 100%;
  width: calc(100vw - 110px);
  background-image: url(../images/pattern.webp);
  background-color: rgba(19, 18, 24, .05);
  overflow: hidden;
}

.main_container {
  text-align: center;
  padding: 30px 10px;
  overflow-y: scroll;
  height: 100%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
  margin-right: -20px;
}

.mc_item {
  background: #fff;
  width: 330px;
  margin: 15px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: inline-block;
  vertical-align: top;
}

.mc_item_title {
  text-align: left;
  width: max-content;
  background-color: rgba(82, 173, 214, 1);
  color: #fff;
  padding: 5px 10px;
  font-size: 0.9em;
  -webkit-border-bottom-right-radius: 5px;
  -moz-border-radius-bottomright: 5px;
  border-bottom-right-radius: 5px;
}

.mc_item_image {
  margin: 10px;
  height: 150px;
}

.mc_item_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mc_item_number {
  background: orange;
  color: #fff;
  padding: 5px 10px;
  font-size: 1.2em;
  width: max-content;
}

.mc_item_des_number {
  background: orange;
  color: #fff;
  padding: 5px 10px;
  font-size: 1.2em;
  width: max-content;
  text-align: right;
  float: right;
}

.mc_item_price {
  background: rgba(82, 173, 214, 1);
  color: #fff;
  padding: 5px 10px;
  font-size: 1.2em;
}

.uk-modal-body img {
  width: 100%;
  height: 100%;
}

.mc_item_desc_number {
  float: right;
  margin-top: -70px;
  background: orange;
  color: #fff;
  padding: 5px 10px;
  font-size: 1.2em;
  width: max-content;
}

.admin_image_items {
  text-align: center;
}

.admin_image_item_w {
  width: 46%;
  margin: 5px;
  display: inline-block;
  height: 160px;
  object-fit: cover;
  position: relative;
  cursor: pointer;
  border: 3px solid white;
}

.admin_image_item {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.admin_title {
  margin: 2px 0 0 0;
}

.upload_main {
  display: none;
}

.uk-notification {
  width: max-content !important;
  text-align: center;
  left: 50% !important;
  transform: translateX(-50%);
  margin: 0 !important;
}

.uk-notification-message {
  background: rgb(82, 173, 214) !important;
  border-radius: 5px;
  color: #fff !important;
}

.uk-notification-message a {
  display: none !important;
}

.uk-notification-message div {
  font-family: sans-serif !important;
  font-weight: 900;
}

.swal2-styled.swal2-confirm {
  background-color: rgb(82, 173, 214) !important;
}

.swal2-styled.swal2-confirm:focus {
  box-shadow: none !important;
}

.bcdrs {
  display: none;
}

.bcoders {
  background-color: #333;
}

.bcoders_inner {
  width: max-content;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  margin: 0 auto;
}

.bc_name {
  font-weight: bold;
  margin-left: 5px;
  cursor: pointer;
}

.bc_name:hover+.bc_video,
.bc_video:hover {
  opacity: 1;
  visibility: visible;
  bottom: 24px;
}

.bc_video {
  width: 150px;
  position: absolute;
  right: -50px;
  bottom: 15px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: .5s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 10000;
  border-radius: 7px;
}

#bcoders_video {
  width: 100%;
  border-radius: 7px;
}



/* R E S P O N S I V E ! ! */

@media only screen and (max-width: 1920px) {
  .mb_list {
    margin: 20px auto;
  }

  .ec_box_L {
    left: -180px;
  }

  .ec_box_R {
    right: -180px;
  }
}

@media only screen and (max-width: 1800px) {
  .choice_box_head_container {
    width: 35vw;
  }
}

@media only screen and (max-width: 1600px) {
  .welcome_text {
    font-size: 2em;
  }

  .eh_background {
    width: 500px;
  }

  .eh_title {
    font-size: 1.6em;
  }

  .events_content {
    max-width: 950px;
  }

  .ec_box_img {
    width: 500px;
    min-width: 500px;
    object-fit: cover;
    height: 450px;
  }

  .ec_box_title {
    font-size: 1.6em;
    margin: 0 0 15px 0;
  }

  .ec_box_text {
    font-size: .9em;
  }

  .ec_box {
    margin: 80px 0;
  }

  .ec_box_L {
    left: -100px;
  }

  .ec_box_R {
    right: -100px;
  }
}

@media only screen and (max-width: 1300px) {

  .hb_wrapper {
    width: 300px;
  }

  .hb_cat {
    font-size: 1.6em;
  }

  .header {
    padding: 50px 0;
  }

  .header::after {
    bottom: 25px;
  }

  .wwr {
    padding: 20px 0 40px;
  }

  .wwr_container {
    max-width: 950px;
  }

  .wwr_title {
    padding: 10px 0 50px 0 !important;
  }

  .wwr_text p {
    font-size: .9em;
  }

  .wwr_image {
    height: 350px;
    margin: 0 10px 0 0px;
    min-width: 250px;
  }

  .pd_box {
    margin: 20px 0px;
  }

  .ec_box_title {
    font-size: 1.4em;
    margin: 0 0 10px 0;
  }

  .ec_box_L {
    left: auto;
  }

  .ec_box_R {
    right: auto;
  }

  .aboutus_container {
    max-width: 950px;
  }

  .aboutus_img {
    width: 450px;
    margin: 20px 10px;
  }

  .contact_container {
    max-width: 950px;
  }

  .contact_form {
    width: 700px;
  }

  .cp_box {
    font-size: 1em;
  }

  .workshift_title {
    font-size: 1.8em;
  }

  .scroll_btn {
    right: 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .select_choice {
    display: block;
  }

  .choice_box,
  .choice_box:hover {
    width: 100%;
  }

  .choice_box {
    height: 50%;
  }

  .choice_box_head {
    padding: 30px max(10vw, 0px);
  }

  .choice_box_head_container {
    width: 75vw;
  }

  .choice_box_title {
    color: rgb(255, 255, 255);
  }

  .welcome_text {
    font-size: 1.6em;
  }

  .welcome_slogan {
    margin-top: -5px;
    font-size: .8em;
  }

  .welcome_btn,
  .eh_btn,
  .ec_box_btn {
    font-size: .8em;
  }

  .welcome_fish {
    width: 350px;
    top: -75px;
  }

  @keyframes showUp {
    from {
      top: -100%
    }

    to {
      top: -75px;
    }
  }

  .eh_background {
    width: 400px;
  }

  .eh_title {
    font-size: 1.3em;
    width: max-content;
  }

  .eh_text {
    margin: 0;
  }

  .wwr_container {
    max-width: 800px;
    display: block;
    width: 90%;
  }

  .wwr_head {
    width: 100%;
  }

  .wwr_images {
    width: 100%;
    justify-content: center !important;
  }

  .qrmenu {
    width: 93%;
    margin: 0 auto;
  }

  .qrmenu_container {
    padding: 0;
  }

  .popular_dishes_container {
    max-width: 900px;
  }

  .pd_box_container {
    width: 400px;
    margin: 0;
  }

  .pd_img {
    width: 130px;
    margin: 0 5px 0 0;
    transform: scale(1.1);
  }

  .pd_head {
    width: 250px;
  }

  .pd_title {
    font-size: 1.2em;
  }

  .pd_text {
    font-size: .8em;
  }

  .aboutus_container {
    max-width: 800px;
    width: 90%;
  }

  .aboutus_text p {
    font-size: .9em;
  }

  .aboutus_img {
    width: 375px;
    height: 250px;
    margin: 10px;
  }

  #map {
    height: 500px;
  }

  .contact_container {
    max-width: 800px;
    height: 670px;
  }

  .contact_form {
    width: 700px;
  }

  .form_box {
    margin: 5px 0;
  }

  .form_input,
  .form_textarea {
    padding: 7px 10px;
  }

  .cp_box {
    padding-left: 20px;
  }

  .contact {
    height: 750px;
  }

  .events_content {
    max-width: 800px;
  }

  .ec_box_img {
    width: 400px;
    min-width: 400px;
    height: 400px;
  }

  .ec_box_head {
    padding: 0 15px;
  }

  .ec_box_text {
    font-size: .8em;
  }

  .cursor {
    display: none;
  }

}

@media only screen and (max-width: 768px) {
  .wwr_image {
    height: 320px;
    margin: 0 10px 0 0px;
    min-width: 220px;
  }

  .contact {
    height: auto;
  }

  .contact_container {
    height: auto;
    flex-direction: column;
  }

  .contact_form,
  .contact_profil {
    width: 100%;
  }

  .contact_profil {
    padding: 20px 0;
    ;
  }

  .ec_box {
    display: block;
  }

  .ec_box_img {
    width: 100%;
    min-width: 100%;
    height: 400px;
  }

  .form_box {
    margin: 10px auto;
  }

  .form_textarea {
    max-width: 100%;
    min-width: 100%;
  }

  .checkbox .form_title {
    font-weight: normal !important;
    font-size: .8em;
  }

  .form_btn {
    margin: 10px 0 40px;
  }

  .ec_box_title {
    font-size: 1.4em;
    margin: 10px 0 0px;
  }


}


@media only screen and (max-width: 550px) {

  .choice_box_head_container {
    width: 90vw;
  }

  .logo {
    width: 250px;
    height: 100px;
  }

  .lang {
    width: 50px;
    height: 50px;
  }

  .hb_wrapper {
    width: 100%;
  }

  .select_choice {
    width: 100%;
  }

  .choice_box_title {
    font-size: 2em;
  }

  .choice_box_button_wrapper {
    font-size: .9em;
  }

  .welcome_fish {
    width: 300px;
    top: -60px;
  }

  @keyframes showUp {
    from {
      top: -100%
    }

    to {
      top: -60px;
    }
  }

  .topwrapper_container,
  .navtopwrapper_container {
    padding: 0 6% 0 3%;
  }

  .mainlogo .logo {
    width: 250px;
  }

  .welcome_text {
    font-size: 1.3em;
    letter-spacing: 1px;
  }

  .wwr_images {
    display: block;
    text-align: center;
    height: auto;
  }

  .wwr_image {
    height: 460px;
    min-width: 80%;
    margin: 0 0 10px 0;
    width: 80%;
  }

  .qrmenu {
    width: 100%;
  }

  .menu_bar_container {
    margin-right: -16px;
  }

  .choice_box_text {
    font-size: .9em;
    color: rgba(255, 255, 255, .8);
  }

  .contact_form_container {
    width: 90%;
  }

  .bc_video {
    right: -30px;
  }
}


@media only screen and (max-width: 470px) {
  .welcome_text {
    font-size: 1em;
  }

  .welcome_slogan {
    letter-spacing: 0;
    font-size: .75em;
  }

  .welcome_btn,
  .eh_btn,
  .ec_box_btn {
    margin: 10px auto;
    font-size: .9em;
  }

  .welcome_fish {
    width: 250px;
    top: -40px;
  }

  .bc_video {
    right: -10px;
    width: 100px;
  }

  @keyframes showUp {
    from {
      top: -100%
    }

    to {
      top: -40px;
    }
  }

  .wwr_title {
    padding: 10px 0 50px 0
  }

  .header {
    font-size: 1.8em;
    letter-spacing: 2px;
  }

  .pd_img {
    width: 120px;
  }

  .pd_head {
    width: 240px;
  }

  .pd_text {
    font-size: .75em;
  }

  .mc_item {
    width: 230px;
  }

  .mc_item_image {
    height: 110px;
  }

  .mc_item_title {
    padding: 2px 5px;
    font-size: 0.8em;
  }

  .mc_item_price {
    background: rgba(82, 173, 214, 1);
    color: #fff;
    padding: 10px 4px;
    font-size: 0.9em;
    width: max-content;
  }

  .mc_item_number {
    padding: 7px 6px;
  }

  .mc_item_head {
    align-items: inherit;
  }

  .wwr_image {
    height: 400px;
  }

  .uk-notification-message {
    font-size: .9em !important;
  }
    .bc_video {
      right: -5px;
      width: 80px;
    }
}

@media only screen and (max-width: 390px) {
  .logo {
    width: 220px;
    height: 88px;
  }

  .contact_form_container {
    width: 90%;
  }

  .checkbox .form_title {
    font-size: .7em;
  }

  .mc_item {
    width: 200px
  }

  .mc_item_image {
    height: 90px;
  }

  .mc_item_title {
    padding: 2px 4px;
    font-size: 0.7em;
  }

  .mc_item_price,
  .mc_item_number {
    padding: 2px 6px;
    font-size: 0.8em;
    margin-top: 15px;
  }

  .header {
    font-size: 1.5em;
  }

  .wwr_image {
    height: 360px;
  }

  .pd_box_container {
    width: 350px;
  }

  .pd_img {
    width: 110px;
  }

  .pd_head {
    width: 240px;
  }

  .pd_title {
    font-size: 1.1em;
  }

  .aboutus_container {
    width: 100%;
  }

  .aboutus_text {
    width: 90%;
    margin: 0 auto;
  }

  .aboutus_img {
    width: 100%;
    margin: 10px 0;
  }

  .eh_title {
    font-size: 1em;
  }

  .eh_text {
    margin: 5px 0 0;
    font-size: .8em;
  }

  .welcome_btn,
  .eh_btn,
  .ec_box_btn {
    letter-spacing: 0;
  }

  .uk-notification-message {
    font-size: .7em !important;
  }

  .bcoders_inner {
    font-size: .8em;
    letter-spacing: 0.5px;
  }

  .bc_name:hover+.bc_video,
  .bc_video:hover {
    opacity: 1;
    visibility: visible;
    bottom: 20px;
  }
}