@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: 'NR SL';
  src: url('../font/nr_sl.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NR SC';
  src: url('../font/nr_sc.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NR SA';
  src: url('../font/nr_sa.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'BSF';
  src: url('../font/bsf_mod2.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-synthesis: none;
}


:root {
  --font-family-base: "Montserrat", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;
  
  --font-family-heading: "BSF", sans-serif;

  --background-color: #101010;

  --text-color: #fff;
  --link-color: #E2CFAF;
  --link-hover-color: #fff;

  --color-1: #9B3629;
  --color-2: #AD493B;
  --color-3: #E2CFAF;
}

::selection {
  background: var(--color-1);
  color: #ffffff;
}

html{
  background-color: var(--background-color);
}

body {
  min-height: 100vh;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--text-color);

  overflow-x: hidden;
  font-optical-sizing: auto;
}

body.disable-scroll{
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6{
  /*color: var(--color-3);*/
  font-family: var(--font-family-heading);
  font-optical-sizing: auto;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
  font-synthesis-weight: none;
}

h1{
  font-size: 66px;
  line-height: 1em;
}

h1.page-title{
  font-size: 100px;
  text-align: center;
  text-transform: uppercase;
}

h2{
  font-size: 42px;
  line-height: 1.1em;
}

h3{
  font-size: 36px;
  line-height: 1.2em; 
}

h4{
  font-size: 24px;
  line-height: 1.2em; 
}

h5{
  font-size: 16px;
  line-height: 1.2em; 
}

h6{
  font-size: 14px;
  line-height: 1.2em; 
}

strong{
  font-weight: bold;
}

a{
  color: var(--text-color);
  text-decoration:none;
}

a:hover{
  color: var(--link-hover-color);
}

img{
  max-width: 100%;
  height: auto;
}

.layout-container {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main{
  flex: 1;
  position: relative;
}

main .container{
  z-index: 10;
}

hr{
  height: 0px;
  width: 100%;
  border: 0;
  border-top: 1px solid #fff;
}

.region-content{
  padding-bottom: 5vh;
}

.page-node-style-1{
  background-color: var(--background-color);
  color: var(--color-3);
}

.page-node-style-2{
  background-color: var(--color-3);
  color: var(--background-color);
}

.page-node-style-3{
  background-color: var(--color-3);
  color: #fff;
}

.maintenance-page{
  color: #fff;
  position: relative;
  background-image: url('../images/cheers_m_bg_02.jpg');
  background-size: cover;
  background-position: bottom center;
  text-align: center;
  overflow: hidden;
  height: 100vh;
  width: 100vw;
}

.maintenance-page .layout-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.maintenance-page .layout-container .layout-inner{
  position: relative;
  max-width: 90%;
  width: 600px;
  height: 600px;
  display: inline-block;
  z-index: 1;
}

.maintenance-page header{
  width: 100%;
  text-align: center;
  margin: 1em auto 0.5em auto;
  display: inline-block;  
}

.maintenance-page header img{
  width: 300px;
}

.maintenance-page main{
  margin: 1em auto;
  display: inline-block;
  width: 500px;
}

.maintenance-page h1{
  font-size: 40px;
  margin-top: 0;
  line-height: 1.1em;
}

.maintenance-page .social-icon:hover svg {
  fill: #E2CFAF; 
}

ul.tabs{
  padding: 0;
  margin: 2em auto;
  list-style: none;
  text-align: center;
}

ul.tabs li{
  display: inline-block;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 95%;
}

ul.tabs li a{
  display: inline-block;
  padding: 10px 16px;
  letter-spacing: 1px;
  border: 1px solid var(--text-color);
  color: var(--background-color);
  background-color: var(--text-color);
  margin: 0.2em;
}

ul.tabs li a:hover,
ul.tabs li.is-active a{
  display: inline-block;
  color: var(--text-color);
  background-color: var(--color-1);
  border: 1px solid var(--color-1);
}

a.gb{
  background-color: var(--color-3);
  color: rgba(0,0,0,1);
  font-family: 'NR SA', sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  box-shadow: unset; 
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  border-radius: 35px;
  border: 2px solid #000;
  font-weight: bold;
  filter: drop-shadow(6px 6px 0px rgba(0,0,0,1));
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

a.gb:hover{
  background-color: var(--color-1);
  color: rgba(255,255,255,1);
  filter: drop-shadow(2px 2px 0px rgba(0,0,0,1));
  transform: translate(4px, 4px);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);  
}

.site-logo{
  
}

.site-logo img{
  width: 200px;
}

.region-primary-menu{
  display: inline-block;
  flex: 1;
}

#main-menu{
  font-family: 'NR SL';
  background-color: var(--color-3);
  color: var(--color-1);
  width: 100%;
  height: 110px;
  display: inline-block;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;  
}

.toolbar-horizontal #main-menu{
  top: 52px;
}

#main-menu .container{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}

#main-menu ul.menu{
  margin: 0;
  padding: 0;
  list-style: none;
  margin-left: 1em;
}

#main-menu ul.menu li{
  display: inline-block;
}

#main-menu ul.menu li a{
  letter-spacing: -0.5px;
  padding: 0px 10px;
  display: inline-block;
  height: 110px;
  line-height: 110px;
  font-size: 20px;
  position: relative;
  color: var(--color-1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#main-menu ul.menu li a:before{
  position: absolute;
  content: "";
  z-index: 1;
  display: inline-block;
  width: 0px;
  background-image:url(../images/c_line_01.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  bottom: 30px;
  left: calc(50% - 35px);
  height: 12px;
  opacity: 0;
  filter: invert(1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#main-menu ul.menu li a.is-active,
#main-menu ul.menu li a:hover{
  color: var(--background-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#main-menu ul.menu li a.is-active:before,
#main-menu ul.menu li a:hover:before{
  /*background-color: var(--text-color);*/
  opacity: 1;
  
  width: 70px;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.social-icons{
  margin: 1em 0;
}

.social-icon{
  display: inline-block;
}

.social-icon svg{
  width: 32px;
  height: 32px;
  fill: var(--text-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.social-icon:hover svg{
  fill: var(--text-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#menu-social{
  height: 110px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  margin-left: 1em;
}

#menu-social .social-icons{
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 0.5em;

}

#menu-social a{
  display: inline-block;
  line-height: 64px;
  width: 64px;
  height: 64px;
  vertical-align: top;
  border-radius: 50%;
  background-color: var(--color-1);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#menu-social a svg{
  margin-top: -2px;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#menu-social a:hover{
  background-color: #000;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#menu-social a:hover svg{
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#menu-location{
  font-family: 'Montserrat', sans-serif;
  height: 110px;
  margin-left: 1em;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;  
  font-weight: bold;
  text-transform: uppercase;
}

#menu-location a{
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
}

.menu-location-icon{
  display: inline-block;
  line-height: 64px;
  width: 64px;
  height: 64px;
  vertical-align: top;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.menu-location-icon svg{
  margin-top: -2px;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  fill: var(--color-1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#menu-location a:hover .menu-location-icon{
  background-color: var(--color-1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#menu-location a:hover .menu-location-icon svg{
  fill: #fff;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.menu-location-info{
  margin-left: 0.5em;
}

.menu-location-label{
  font-size: 16px;
  color: var(--color-1);
}

.menu-location-text{
  font-size: 12px;
  color: #000;
  letter-spacing: -0.5px;
  max-width: 110px;
  text-wrap-style: pretty;  
}

#menu-oh a{
  font-family: 'Montserrat', sans-serif;
  height: 110px;
  margin-left: 1em;
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;  
  font-weight: bold;
  text-transform: uppercase;
}

.menu-oh-icon{
  display: inline-block;
  line-height: 64px;
  width: 64px;
  height: 64px;
  vertical-align: top;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.menu-oh-icon svg{
  margin-top: -2px;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  fill: var(--color-1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.oh-open-state-open .menu-oh-icon svg{
  fill: #299b5c;
}

.oh-open-state-closed .menu-oh-icon svg{
  fill: var(--color-1);
}

#menu-oh a:hover .menu-oh-icon{
  background-color: var(--color-1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#menu-oh a:hover .menu-oh-icon svg{
  fill: #fff;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.menu-oh-info{
  margin-left: 0.5em;
  color: #000;
}

.menu-oh-info .oh-row{
  font-size: 12px;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.menu-oh-info .oh-days,
.menu-oh-info .oh-time{
  display: inline-block;
}

.menu-oh-info .oh-days{
  color: var(--color-1);
}

.path-frontpage #main-menu:after{
  content: "";
  width: 100%;
  height: 40px; 
  mask: url(../images/checker.svg) repeat 0;
  mask-size: 40px;
  background-repeat: repeat;
  background-size: 40px;
  background-color: var(--color-3);
  bottom: -40px;
  opacity: 1;
  left: 0;
  z-index: -1;
  position: absolute;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#main-menu.stick:after{
  bottom: 0px;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}


.container{
  position: relative;
  width: 1440px;
  max-width: 90%;
  margin: 0 auto;
}

.container-w{
  position: relative;
  width: 90%;
  padding: 0 5%;
}

.container-fw{
  position: relative;
  width: 100%;
  padding: 0;
}

.container-n{
  position: relative;
  width: 1200px;
  max-width: 90%;
  margin: 0 auto;
}

.region-highlighted .messages{
  margin: 2em auto;
  padding: 1em 2em;
}

.region-highlighted .messages a{
  color: #fff;
}

.region-highlighted .messages ul{
  list-style: none;
  padding-left: 0;
}

.messages--webform .button--dismiss {
  display: none;
}

.messages.messages--info {
  color: #589ac5;
  background-color: #122b3c;
  border-color: #122b3c;
}

.messages.messages--info .messages__header {
  background: none;
}

.messages.messages--info .messages__header:before {
  background-color: #589ac5;
  -webkit-mask-image: url("../images/sprite.svg#info-view");
          mask-image: url("../images/sprite.svg#info-view");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center left;
          mask-position: center left;
}

.messages.messages--info .button--dismiss .icon-close:link {
  background-color: #589ac5;
}

.messages.messages--status {
  color: #32cea4;
  background-color: #145242;
}

.messages.messages--status .messages__header:before {
  background-color: #32cea4;
  -webkit-mask-image: url("../images/sprite.svg#status-view");
          mask-image: url("../images/sprite.svg#status-view");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center left;
          mask-position: center left;
}

.messages.messages--status .button--dismiss .icon-close:link {
  background-color: #32cea4;
}

.messages.messages--warning {
  color: #efcf64;
  background-color: #605328;
}

.messages.messages--warning .messages__header:before {
  background-color: #efcf64;
  -webkit-mask-image: url("../images/sprite.svg#warning-view");
          mask-image: url("../images/sprite.svg#warning-view");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center left;
          mask-position: center left;
}

.messages.messages--warning .button--dismiss .icon-close:link {
  background-color: #efcf64;
}

.messages--error {
  color: #f39b9d;
  background-color: #583333;
}

.messages--error .messages__header:before {
  background-color: #f39b9d;
  -webkit-mask-image: url("../images/sprite.svg#error-view");
          mask-image: url("../images/sprite.svg#error-view");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center left;
          mask-position: center left;
}

.messages--error .button--dismiss .icon-close:link {
  background-color: #f39b9d;
}

#menu-logo{
  display: inline-block;
  vertical-align: top;
  height: 110px;
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

#menu-logo a{
  position: relative;
  display: inline-block;
  vertical-align: top;  
}

#menu-logo a img{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 120px;
}

nav.breadcrumb ol{
  list-style: none;
}

nav.breadcrumb ol li{
  display: inline-block;
}

footer{
  position: relative;
  color:rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  margin-top: 0;
  background-color: var(--background-color);
}

footer .container-n{
  margin-top: 1em;
  padding-top: 2em;
  margin-bottom: 2em;
  display: flex;
  border-top: 1px dotted rgba(255,255,255,1);
}

#footer-left p,
#footer-right p{
  padding: 0;
  margin: 0;
}

#footer-left{
  width: 50%;
  display: inline-block;
  vertical-align: top;
}

#footer-right{
  width: 50%;
  display: inline-block;
  vertical-align: top;

  text-align: right;
}

footer a{
  color: rgba(255,255,255,0.8);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

footer a:hover{
  color:rgba(0,0,0,1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#pre-footer-top{
  margin-left: 1em;
  flex: 1;
}

#pre-footer{
  padding-top: 2em;
  padding-bottom: 1em;
  background-color: var(--background-color);
  color: var(--text-color);
  position: relative;
  z-index: 10;
}

#pre-footer:before {
  content: "";
  width: 100%;
  height: 40px;
  mask: url(../images/checker.svg) repeat 0;
  mask-size: 40px;
  background-repeat: repeat;
  background-size: 40px;
  background-color: var(--background-color);
  top: -40px;
  opacity: 1;
  left: 0;
  z-index: -1;
  position: absolute;
  display: inline-block;
}

#pre-footer > div{
  display: flex;
  justify-content: space-between;
}

#pre-footer-branding{
  align-content: center;
  align-items: center;
  justify-content: flex-start;
}

#pre-footer .pre-footer-block{
  margin-top: 2em;
}

#pre-footer a{
  color:rgba(255,255,255,1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#pre-footer a:hover{
  color:rgba(0,0,0,1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#pre-footer .social-icons{
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 0.5em;  
}

#pre-footer a.social-icon{
  display: inline-block;
  line-height: 64px;
  width: 64px;
  height: 64px;
  vertical-align: top;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#pre-footer a.social-icon svg {
  margin-top: -2px;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  fill: var(--background-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.pre-footer-block{
  max-width: 33%;
}

#pre-footer ul.menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

#pre-footer ul.menu li{

}

#pre-footer ul.menu li a {
  font-family: 'NR SL';
  padding: 0px 10px;
  display: inline-block;
  font-size: 20px;
  position: relative;
  color: #fff;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#pre-footer ul.menu li a:hover {
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1); 
}

#footer-logo{
  display: inline-block;
  /*width: 160px;*/
  width: 100px;
}

#footer-logo a{
  position: relative;
  display: inline-block;
  vertical-align: top;  
}

#footer-logo a img{
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 100%;
  filter: contrast(0) brightness(2);
}

#sliding-popup{
  background-color: var(--color-1);
  color: var(--text-color);
  width: 100%;
  z-index: 490;
}

.eu-cookie-compliance-content {
  margin: 1em auto;
  display: inline-block;
  text-align: left;
  width: 1440px;
  max-width: 90%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: stretch;
  flex: 1;
  justify-content: space-between;
}

.eu-cookie-compliance-message {
  float: unset;
  max-width: unset;
  margin-right: 2em;
  flex: 1;
}

.eu-cookie-compliance-buttons {
  float: unset;
  max-width: 40%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap:10px;
}

#popup-text h2{
  font-family: 'Montserrat', sans-serif;
  text-wrap-style: pretty;
  font-size: 22px;
  margin: 0;
  margin-bottom: 0.4em;
  text-transform: uppercase;
  font-size: 20px;
}

#popup-text p{
  margin: 0;
  display: inline-block;
}

#popup-buttons button{
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  background-color: rgba(255,255,255,1);
  color: rgba(0,0,0,1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  box-shadow: unset;
  border: 0;  
  white-space: nowrap;
  border-radius: 35px;
  border: 2px solid #000;
  font-weight: bold;
}

#popup-buttons button.agree-button{
  
}

#popup-buttons button.decline-button{
  background-color: rgba(211,211,211,1);
}

#popup-buttons button:hover{
  background-color: var(--color-1);
  color: rgba(255,255,255,1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#sliding-popup button.find-more-button{
  background-color: unset;
  color: var(--text-color);
  font-weight: bold;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  border: 0;
}

#sliding-popup button.find-more-button:hover{
  color: var(--text-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.pswp__img--placeholder{
  display: none!important;
}

.pswp_img {
  max-height: 100vh !important;
  width: auto !important;
  position: static !important;
}

.pswp__zoom-wrap {
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.scrolltop{
  cursor: pointer;
  border-radius: 50%;
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 50;
  display: inline-block;
  background-color: #fff;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.scrolltop:hover{
  background-color: #000; 
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.scrolltop svg{
  vertical-align: top;
  width: 28px;
  height: 28px;
  padding: 1em;
  fill: #000;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.scrolltop:hover svg{
  fill: #fff;
  transition: all 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#mobile-menu{
  max-width: 90%;
  width: 400px;
}

#mobile-menu-open{
  display: none;
  line-height: 64px;
  width: 64px;
  height: 64px;
  vertical-align: top;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  margin-right: 1em;
  cursor: pointer;
}

#mobile-menu-open:hover{

}

#mobile-menu-open svg{
  margin-top: -2px;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  fill: var(--background-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#mobile-menu-open:hover svg{
  fill: var(--color-1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#mobile-overlay{
  background-color: rgba(0,0,0,0.8);
  position: fixed;
  z-index: 500;
  top: 0;
  transform: scale(1.2);
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
  transform-origin: center center;
  backdrop-filter: blur(0px);
}

#mobile-overlay.active{
  visibility: visible!important;
  transform: scale(1.0);
  opacity: 1!important;
  top: 0;
  transition: all .3s ease-in-out;
  transform-origin: center center;
  backdrop-filter: grayscale(0.4) blur(15px);
}

#mobile-menu-wrapper{
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  align-content: center; 
  position: relative;
}

#mobile-menu-wrapper ul.main-menu{
  width: 400px;
  max-width: 100%;
}

#mobile-menu-wrapper ul.main-menu li{
  display: inline-block;
  width: 100%;
  text-align: center;
  margin: 5px 0;
}


#mobile-menu-close{
  width: 48px;
  height: 48px;
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
}

#mobile-menu-close svg{
  fill: var(--text-color);
  width: 48px;
  height: 48px;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  overflow: visible;
}

#mobile-menu-close:hover svg{
  fill: var(--link-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}


#mobile-menu-wrapper ul.social-icons {
  margin: 0;
  padding: 0;
}

#mobile-overlay-branding{
  max-width: 100%;
  width: 250px;
}

#mobile-overlay-branding-wrapper{
  text-align: center;
  max-width: 90%;
}

#mobile-overlay-branding svg{
  width: 100%;
  fill: #fff;
  max-width: 90%;
}

#mobile-menu{
  margin: 1em 0;
}

#mobile-menu ul.menu{
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'NR SL';
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;  
}

#mobile-menu ul.menu li{

}

#mobile-menu ul.menu li a{

  letter-spacing: -0.5px;
  padding: 0.2em 1em;
  display: inline-block;
  font-size: 22px;
  position: relative;
  color: var(--color-3);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#mobile-menu ul.menu li a:hover{
  color: #fff;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1); 
}

.mmenu-oh-info{
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  margin-bottom: 1em;
}

.mmenu-oh-info .oh-row{
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
}

.mmenu-oh-info .oh-days{
  display: inline-block;
  margin-right: 0.5em;
  color: var(--color-3);
}

.mmenu-oh-info .oh-time{
  display: inline-block;
}

#mmenu-location{
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center; 
  margin-bottom: 1em;
}

.mmenu-location-info{
  font-weight: bold;
  white-space: nowrap;
  text-transform: uppercase;
}

.mmenu-location-label{
  text-align: center;
}

.mmenu-location-text{
  text-align: center;
  color: var(--color-3); 
}

.webform-submission-form .form-required::after {
  content: '';
  vertical-align: super;
  display: inline-block;
  background-image: url(/core/misc/icons/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
}

#cover{
  margin-top: 110px;
  min-height: 40px;
  position: relative;
  background-color: var(--color-3);
  overflow: hidden;
}

#cover .title-wrapper{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

#cover .section-sep{
  content: "";
  width: 130vw;
  height: 40px;
  mask: url(../images/checker.svg) repeat 0;
  mask-size: 40px;
  background-position: 0;
  background-repeat: repeat;
  background-size: 40px;
  background-color: var(--background-color);
  bottom: 0px;
  opacity: 1;
  left: 0;
  z-index: 1;
  position: absolute;
  display: inline-block;  
}

.page-node-style-1 #cover .section-sep{
  background-color: var(--background-color);
}

.page-node-style-2 #cover .section-sep{
  background-color: var(--color-3);
}

.page-node-style-3 #cover .section-sep{
  background-color: var(--color-1);
}

#banner{
  display: inline-block;
  width: 100%;

  position: relative;
  margin: 0;
  padding: 0;
  margin-top: 110px;
  user-select: none;
}

#banner-splide .splide__slide{
  height: 70vh;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: center;
  z-index: 5;
}

#banner-splide .splide__slide.is-active{
  z-index: 10;
}

#banner-splide .splide__slide__inner{
  display: inline-block;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  max-width: 600px;
  width: 600px;
  height: 70vh;
}

#banner-splide .splide__slide .splide__slide__bg{
  border: 4px solid #000;
  border-radius: 20px;
  display: inline-block;
  width: 100%;
  aspect-ratio: 3 / 2;
  background-repeat: no-repeat;
  z-index: 20;
  transition: all 1s cubic-bezier(0.87, 0, 0.13, 1);
  background-size: cover;
  margin-top: 20vh;
  transform: scale(0.6);
  transition: all 1s cubic-bezier(0.87, 0, 0.13, 1);  
}

#banner-splide .splide__slide.is-active .splide__slide__bg{
  transform: scale(1);
  transition: all 1s cubic-bezier(0.87, 0, 0.13, 1);
}

#banner-splide .splide__slide .splide__slide__text{
  color: #fff;
  font-family: 'NR SA', sans-serif;
  position: absolute;

  margin-left: calc(50% - 45vw);
  margin-right: calc(50% - 45vw);
  max-width: 90vw;
  width: 90vw;

  left: 0;
  font-size: 80px;
  letter-spacing: 2px;
  z-index: 10;
  transform: scale(0.8);
  top: 30vh;
  opacity: 0;
  color: rgba(0,0,0,1);
  transition: all 1s cubic-bezier(0.87, 0, 0.13, 1);
  line-height: 1.1em;
}

#banner-splide .splide__slide.is-active .splide__slide__text{
  top: 10vh;
  opacity: 1;
  transform: scale(1);
  color: rgba(255,255,255,1);
  transition: all 1s cubic-bezier(0.87, 0, 0.13, 1);
}

#banner-title{
  position: absolute;
  max-width: 90%;
  width: 90%;
  text-align: center;
  left: 5%;
  height: 17vh;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;  
}

#banner-title h1{
  color: #fff;
  font-family: 'NR SA', sans-serif;
  font-size: 100px;
  letter-spacing: 2px;
  z-index: 10;
  opacity: 1;
  color: rgba(255,255,255,1);
  line-height: 1em;
  margin: 0;
  display: flex;
  align-items: center;
  align-content: center;
  justify-content: center;
}

#banner-title span{
  letter-spacing: 1px;
  font-family: 'NR SL', sans-serif;
  display: flex  ;
  align-items: center;
  align-content: center;
  justify-content: center;
  font-size: 43.2px;
  line-height: 1em;
  color: var(--color-3);
}


.front-section{
  padding: 10vh 0;
  font-size: 18px;
}

.front-section-two-col{
  display: flex;
  gap: 2em;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}

.front-section-left{
  display: flex;
  width: 50%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
}

.front-section-right{
  display: flex;
  width: 50%;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: flex-start;
  justify-content: center;
  align-items: flex-start;
}

.section-title h2{
  margin-top: 0;
  font-size: 100px;
  margin-bottom: 0.6em;
}

.section-more-link{
  margin-top: 3em;
  display: inline-block;
}

.section-bg-full{
  height: 55vh;
  width: 100%;
  display: inline-block;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.section-bg-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-position: center;
  background-size: cover;
}

#intro{
  padding: 15vh 0;
  background-color: var(--color-3);
  color: var(--background-color);
}

#intro .section-subtitle{
  font-family: 'NR SC', sans-serif;
  font-size: 42px;
  color: var(--color-1);
}

#intro .section-title h2{
  filter: drop-shadow(4px 4px 0px #fff);
}

#intro .section-title h2 span{
  color: var(--color-1);
}

#intro .front-section-left{
  width: 40%;
}

#intro .front-section-right{
  align-items: center;
}

#intro .intro-img-wrapper{
  width: 550px;
  height: 550px;
  display: inline-block;
  position: relative;
}

#intro .intro-img{
  width: 550px;
  height: 550px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  border: 4px solid #000;
  border-radius: 20px;  
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 1));
  transform-origin: bottom center;
}

#intro .intro-img:nth-child(1){
  transform: translate(-50%, -50%) rotate(10deg);
  z-index: 10;
}

#intro .intro-img:nth-child(2){
  transform: translate(-50%, -50%) rotate(-10deg);
  z-index: 5;
}


#itallap{
  color: var(--color-3);
  position: relative;
}

#itallap .section-title{
  text-align: center;
}

#itallap .section-bg-full{
  margin-top: -10vh;
  margin-bottom: 10vh;
  overflow: hidden;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 5;
}

#itallap .section-bg-full .section-sep{
  content: "";
  width: 130vw;
  height: 40px;
  mask: url(../images/checker.svg) repeat 0;
  mask-size: 40px;
  background-position: 0;
  background-repeat: repeat;
  background-size: 40px;
  background-color: var(--background-color);
  bottom: 0px;
  opacity: 1;
  left: 0;
  z-index: 1;
  position: absolute;
  display: inline-block;
}

#itallap a.gb{
  border: 2px solid #fff;
  filter: drop-shadow(6px 6px 0px rgba(255,255,255,1));
}

#itallap a.gb:hover{
  filter: drop-shadow(2px 2px 0px rgba(255,255,255,1));
}

#itallap .section-more-link{
  width: 100%;
  text-align: center;
}

#itallap .section-content-wrapper{

}

#itallap .section-content{
  padding: 5vh 0;
}

#itallap .section-more-link{

}

#itallap .container{
  z-index: 10;
  position: relative;
}

#itallap:after{
  content: "";
  z-index: 1;
  background-image: url(../images/c_bg_4.svg);
  background-size: cover;
  background-position: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0.3;
  mix-blend-mode: soft-light;
}


.itallap-card-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 2em;
}

.itallap-card{
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.itallap-card:hover{
  color: var(--color-3);
  transform: scale(1.1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}


.itallap-card h3{
  font-size: 36px;
  font-family: 'NR SA';
  margin: 0;
}

#itallap-wrapper{

}

#itallap-header-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap:1em;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 3px dotted var(--text-color);
}

#itallap-header-wrapper a.jump-link{
  text-align: center;
  font-size: 18px;
  letter-spacing: 0;
  font-family: 'NR SA';
  color: var(--text-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#itallap-header-wrapper a.jump-link:hover{
  color: var(--color-3); 
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#itallap-content{
  display: inline-block;
  column-count: 3;
  column-gap: 2em;
  column-fill: balance;
  max-width: 100%;
}

.panel{
  margin-bottom: 1em;
}

.panel-type-itallap .row{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  margin-bottom: 0.2em;
  border-bottom: 1px dotted rgba(255,255,255,0.1);
  padding-bottom: 0.2em;
  break-inside: avoid;
}

.panel-type-itallap .row-header{
  flex: 3;
}

.panel-type-itallap .row-title{
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 0.5em;
  width: 100%;
}

.panel-type-itallap .row-description{
  font-size: 80%;
}

.panel-type-itallap .row-price{
  text-align: right;
  flex: 1;
}

.panel-type-itallap .row-price-val{
  display: inline-block;
  font-weight: bold;
}

.panel-type-itallap .row-price-unit{
  text-transform: uppercase;
  display: inline-block;
  color: rgba(255,255,255,0.7);
  font-size: 70%;
}

.panel-type-itallap .row-price-1{
  white-space: nowrap;
  line-height: 1em;
}

.panel-type-itallap .row-price-2{
  white-space: nowrap;
  line-height: 1em;
}

.page-node-id-6 main:after{
  content: "";
  z-index: 1;
  background-image: url(../images/c_bg_5.svg);
  background-size: 95%;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 5vh;
  right: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  opacity: 0.3;
  mix-blend-mode: soft-light;
}

.panel-type-text-fw{
  column-span: all;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
  border-top: 1px solid var(--color-3);
  border-bottom: 1px solid var(--color-3);
}

.panel-header{
  font-size: 28px;
  letter-spacing: 0;
  color: var(--background-color);
  width: calc(100% - 30px);
  position: relative;
  padding: 10px 15px;
  background-color: var(--color-3);
  margin-bottom: 0.4em;
  break-after: avoid;
}

.panel-header h3{
  font-family: 'NR SA';
  margin: 0;
  padding: 0;
}

.panel-header:after{

}

/* */

#etlap{
  background-color: var(--color-1);
  color: var(--background-color); 
  position: relative;
}

#etlap:before{
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.4;
  content: "";
  width: 100%;
  height: 400px;
  display: inline-block;
  background: url('../images/bg_34.png');
}

#etlap .container-w{
  z-index: 10;
  position: relative;
}

#etlap .section-title{
  text-align: center;
  color: #fff;
}

#etlap .section-content{
  padding: 5vh;
}

#etlap .section-more-link{
  width: 100%;
  text-align: center;
}

.etlap-card-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.etlap-card{

  width: 220px;
  background-color: #fff;
  letter-spacing: 1px;
  padding: 25px 25px;
  border-radius: 35px;
  border: 2px solid #000;
  font-weight: bold;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 1));
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.etlap-card:hover{
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  filter: drop-shadow(0px 0px 0px rgba(0,0,0,1));
}

.etlap-card-wrapper a{
  z-index: 1;
  transform: scale(1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.etlap-card-wrapper a:hover{
  z-index: 10;
  transform: scale(1.3);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.etlap-card h3{
  text-align: center;
  font-size: 28px;
  letter-spacing: 0;
  font-family: 'NR SA';
  color: var(--background-color);
  margin-bottom: 0;
}

.etlap-card-thumb{
  border-radius: 15px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 1 / 1;

}

#etlap-wrapper{

}

#etlap-header-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap:1em;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 3px dotted var(--background-color);
}

#etlap-header-wrapper a.jump-link{
  text-align: center;
  font-size: 18px;
  letter-spacing: 0;
  font-family: 'NR SA';
  color: var(--background-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#etlap-header-wrapper a.jump-link:hover{
  color: var(--color-1); 
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#etlap-content{
  display: inline-block;
  column-count: 3;
  column-gap: 2em;
  column-fill: balance;
  max-width: 100%;
}

#etlap-footer{
  display: flex;
}

.panel-type-etlap .row{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  margin-bottom: 0.2em;
  border-bottom: 1px dotted rgba(0,0,0,0.1);
  padding-bottom: 0.2em;
  break-inside: avoid;
}


.panel-type-etlap .row-header{
  flex: 3;
}

.panel-type-etlap .row-title{
  color: var(--color-1);
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 0.5em;
  width: 100%;
}

.panel-type-etlap .row-allergens{
  color: var(--background-color);
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  margin-left: 0.5em;
}

.panel-type-etlap .row-description{
  font-size: 80%;
}

.panel-type-etlap .row-price{
  text-align: right;
  flex: 1;
}

.panel-type-etlap .row-price-val{
  display: inline-block;
  font-weight: bold;
}

.panel-type-etlap .row-price-1{
  white-space: nowrap;
  line-height: 1em;
}

.panel-type-etlap .panel-header{
  color: var(--background-color);
  background-color: var(--color-1);
}

.page-node-id-5 main:after{
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0.2;
  content: "";
  width: 100%;
  height: 400px;
  transform: rotate(180deg);
  display: inline-block;
  background: url('../images/bg_34.png');
}

#kapcsolat{
  background-size: 100%;
  background-position: center;
  padding: 25vh 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;  
  color: var(--background-color);
  position: relative;
}

#kapcsolat .section-bg-full{
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: inline-block;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  z-index: 5;
}

#kapcsolat .section-bg-image{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  background-position: center;
  background-size: cover;
}

#kapcsolat .container-s{
  z-index: 10;
  width: 800px;
  background-color: #fff;
  letter-spacing: 1px;
  padding: 15px 35px;
  border-radius: 35px;
  border: 2px solid #000;
  font-weight: bold;
  filter: drop-shadow(6px 6px 0px rgba(0, 0, 0, 1));
}

.sp{
  text-align: center;
}

#sp-logo{
  max-width: 300px;
  text-align: center;
  margin: 1em auto;
  width: 300px;
}

.sp .social-icons{
  margin: 2em auto;
}

.sp .social-icon .social-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--text-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#banner-marquee{
  width: 100%;
  overflow: hidden;
}

.banner-marquee-text{
  user-select: none;
  font-family: 'NR SL', sans-serif;
  letter-spacing: 4px;
  color: #fff;
  font-size: 60px;
  /*overflow: hidden;*/
  display: flex;
  white-space: nowrap;
  text-transform: uppercase;  
}

.banner-marquee-text span{
  padding-right: 0.5em;
}

.view-cover{
  
}

.view-cover .views-field-field-belyegkep .field-content > div{
  height: 50vh;
  width: 100%;
  background-position: center;
  background-size: cover;
}

#contact-map-wrapper{
  position: relative;
  margin: 10vh 0 0 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

#contact-map{
  background-color: #000;
  display: inline-block;
  height: 80vh;
  width: 100%;
}

#contact-map:before{
  content: "";
  width: 130vw;
  height: 40px;
  mask: url(../images/checker.svg) repeat 0;
  mask-size: 40px;
  background-position: 0;
  background-repeat: repeat;
  background-size: 40px;
  background-color: var(--background-color);
  top: 0px;
  opacity: 1;
  left: 0;
  z-index: 1;
  position: absolute;
  display: inline-block;
}

#contact-map:after{
  content: "";
  width: 130vw;
  height: 40px;
  mask: url(../images/checker.svg) repeat 0;
  mask-size: 40px;
  background-position: 0;
  background-repeat: repeat;
  background-size: 40px;
  background-color: var(--background-color);
  bottom: 0px;
  opacity: 1;
  left: 0;
  z-index: 1;
  position: absolute;
  display: inline-block;
}

#contact-map-wrapper:before{
  content: "";
  width: 100vw;
  height: 20px;
  background-color: var(--background-color);
  top: 0px;
  opacity: 1;
  left: 0;
  z-index: 1;
  position: absolute;
  display: inline-block;
}

#contact-map-wrapper:after{
  content: "";
  width: 100vw;
  height: 20px;
  background-color: var(--background-color);
  bottom: 7px;
  opacity: 1;
  left: 0;
  z-index: 1;
  position: absolute;
  display: inline-block;
}

#contact-address{
  margin-top: 2em;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
  margin-bottom: 2em;
  gap: 1em;
}

.contact-address-postal-code{
  font-size: 36px;
  font-family: 'NR SA', sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-3);
}

.contact-address-settlement{
  font-size: 36px;
  font-family: 'NR SL', sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-1);
}

.contact-address-postal-street{
  width: 100%;
  font-size: 42px;
  font-family: 'NR SA', sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  /*color: var(--color-1);*/
}

#contact-oh{
  display: flex;
  padding-top: 2em;
  margin-top: 2em;
  margin-bottom: 2em;
  border-top: 3px dotted var(--background-color);
  text-align: center;
  flex-direction: row;
  align-content: center;
  justify-content: space-around;
  align-items: center;  
  gap: 1em;
}

.page-node-id-4 #contact-oh{
  margin-top: 10vh;
  border-top: 3px dotted var(--text-color);
  padding-bottom: 2em;
  margin-bottom: 10vh;
  border-bottom: 3px dotted var(--text-color);
  max-width: 1000px;
  margin-left: auto;  
  margin-right: auto;
}

.page-node-id-4 #contact-address{

}

#contact-oh .oh-row{
  text-align: center;
  font-family: 'NR SA', sans-serif;
}

#contact-oh .oh-days{
  color: var(--color-1);
}

#contact-oh .oh-time{
  font-size: 36px;
}

#contact-oh .oh-comment{
  font-family: "Montserrat", sans-serif;
  color: rgb(0,0,0,0.5);
  font-weight: 400;
  font-size: 16px;
}

.page-node-id-4 #contact-oh .oh-comment{
  color: rgb(255,255,255,0.5);
}


#contact-phone{
  display: flex;
  border-top: 3px dotted var(--background-color);
  text-align: center;
  flex-direction: column;
  align-content: center;
  justify-content: space-around;
  align-items: center;  
  gap: 1em;
  padding-bottom: 2em;
  margin-bottom: 10vh;
  border-bottom: 3px dotted var(--text-color);
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;  
}

.contact-phone-label {
  width: 100%;
  font-size: 42px;
  font-family: 'NR SA', sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-phone-link{
  font-size: 36px;
  text-align: center;
  font-family: 'NR SA', sans-serif;      
}

.webform-submission-form{
  max-width: 800px;
  margin: 2em auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;  
}

.webform-submission-form label{
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 95%;
  display: inherit;
  width: 100%;
  font-weight: bold;
}

.webform-submission-form .form-item-name,
.webform-submission-form .form-item-email,
.webform-submission-form .form-item-telefonszam{
  width: 48%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 1em;
}

.webform-submission-form .form-item-name input,
.webform-submission-form .form-item-email input,
.webform-submission-form .form-item-telefonszam input{
  border-radius: 15px;
  width: calc(100% - 42px);
  display: inline-block;
  border: 1px solid var(--text-color);
  padding: 15px 20px; 
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  line-height: 1.4em;
  background: unset;
  color: #fff;
}

.webform-submission-form .form-item-name input:active,
.webform-submission-form .form-item-email input:active,
.webform-submission-form .form-item-telefonszam input:active{
  border: 1px solid var(--link-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.webform-submission-form .form-item-message{
  margin-bottom: 1em;
  width: 100%;
  display: inline-block; 
}

.webform-submission-form .form-item-message textarea{
  border-radius: 15px;
  border: 1px solid var(--text-color);
  padding: 15px 20px; 
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);  
  line-height: 1.4em;
  width: calc(100% - 42px);
  background: unset;
  color: #fff;
  height: 5em;
}

.webform-submission-form #edit-actions input{
  background-color: var(--color-3);
  color: rgba(0,0,0,1);
  font-family: 'NR SA', sans-serif;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  box-shadow: unset; 
  white-space: nowrap;
  overflow: hidden;
  position: relative;
  border-radius: 35px;
  border: 2px solid #000;
  font-weight: bold;
  filter: drop-shadow(6px 6px 0px rgba(0,0,0,1));
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  cursor: pointer;
}

.webform-submission-form #edit-actions input:hover{
  background-color: var(--color-1);
  color: rgba(255,255,255,1);
  filter: drop-shadow(2px 2px 0px rgba(0,0,0,1));
  transform: translate(4px, 4px);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);  
}

.webform-submission-form .form-required::after {
  content: '';
  vertical-align: super;
  display: inline-block;
  background-image: url(/core/misc/icons/ee0000/required.svg);
  filter: grayscale(1) invert(1) brightness(5);
  background-repeat: no-repeat;
  background-size: 8px 8px;
  width: 8px;
  height: 8px;
  margin: 0 0.2em;
}

.page-node-id-1 main .field--name-body{
  margin: 0 auto;
  width: 700px;
  font-size: 24px;
  font-weight: 100;
  line-height: 1.8em;
  margin-bottom: 5vh;
  max-width: 100%;
}

.page-node-id-1 main:after{
  z-index: -1;
  position: absolute;
  top: -5vw;
  left: calc(50% - 25vw);
  opacity: 0.05;
  content: "";
  width: 50vw;
  height: 50vw;
  transform: rotate(10deg);
  display: inline-block;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../images/cheers_logo_w.svg);
}

.view-galeria{

}

.view-galeria .view-content{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 0.5em;
}

.view-galeria .views-row{

}

.view-galeria .views-row a,
.view-galeria .views-row a img{
  display: inline-block;
  vertical-align: top;
}

.view-galeria .views-row a img{
  height: 200px;
  width: auto;
  border-radius: 15px;
  border: 3px solid var(--background-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  aspect-ratio: 3 / 2;
  object-fit: cover;  
}

.view-galeria .views-row a:hover img{
  transform: scale(1.1);
  border: 3px solid var(--color-3);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

.view-allergenek{
  margin: 2em 0;
  font-size: 90%;
}

.view-allergenek .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 1em;
}

.view-allergenek .views-row{
  white-space: nowrap;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.view-allergenek .views-field-field-sorszam{
  background-color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  border-radius: 1em;
  width: 2em;
  height: 2em;
  margin-right: 0.2em;
  font-weight: 700;
  line-height: 2em;
}

.view-allergenek .views-field-name{
  display: inline-block;
  text-transform: uppercase;
  line-height: 2em;
}

#mobile-menu-wrapper .social-icons{
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  gap: 0.5em;

}

#mobile-menu-wrapper a.social-icon{
  display: inline-block;
  line-height: 64px;
  width: 64px;
  height: 64px;
  vertical-align: top;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#mobile-menu-wrapper a.social-icon svg{
  margin-top: -2px;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  fill: var(--background-color);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#mobile-menu-wrapper a.social-icon:hover{
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#mobile-menu-wrapper a:hover svg{
  fill: var(--color-1);
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
}

#ag-overlay{
  background-color: rgba(0,0,0,0.8);
  position: fixed;
  z-index: 500;
  top: 0;
  transform: scale(1.2);
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
  transform-origin: center center;
  backdrop-filter: blur(0px);
  display: flex;
  justify-content: center;
  align-items: center;  
}

#ag-overlay.active{
  visibility: visible!important;
  transform: scale(1.0);
  opacity: 1!important;
  top: 0;
  transition: all .3s ease-in-out;
  transform-origin: center center;
  backdrop-filter: grayscale(0.4) blur(15px);
}

#ag-wrapper{
  width: 500px;
  max-width: calc(90% - 60px);
  display: inline-block;
  padding: 30px;
  text-align: center;
  background-color: var(--color-3);
  color: var(--background-color);
  border-radius: 15px;
}

#ag-title{
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  letter-spacing: 1px;
  margin-bottom: 0.2em;
  font-weight: bold;
}

#ag-desc{
  margin-bottom: 2em;
}

#ag-actions{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: stretch;
}

#ag-p{
  display: inline-block;
  width: calc(45% - 70px);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255,255,255,0.2);
  border-radius: 35px;
  border: 2px solid rgba(255,255,255,0.5);
}

#ag-p:hover{
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  background-color: var(--color-1);
  border: 2px solid rgba(255,255,255,0.0);
  color: #fff;
}

#ag-b{
  display: inline-block;
  width: calc(45% - 74px);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: rgba(255,255,255,0.2);
  border-radius: 35px;
  border: 2px solid rgba(255,255,255,0.5);
}

#ag-b:hover{
  transition: all 0.3s cubic-bezier(0.87, 0, 0.13, 1);
  background-color: var(--color-1);
  border: 2px solid rgba(255,255,255,0.0);
  color: #fff;
}

#ag-ico{
  position: relative;

  text-align: center;
  margin-bottom: 0.4em;
  display: inline-block;
  text-align: center;
}

#ag-ico:before{
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  left: 5px;
  top: 5px;
  border-radius: 100px;
  background: #fff;
  z-index: 1;
}

#ag-ico:after{
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  left: 0;
  top: 0;
  border-radius: 100px;
  border: 15px solid var(--color-1);
  z-index: 2;

}

#ag-ico-text{
  font-family: "Montserrat", sans-serif;
  position: relative;
  font-weight: bold;
  font-size: 80px;
  letter-spacing: -5px;
  display: inline-block;
  line-height: 150px;
  text-align: center;
  padding: 15px;
  z-index: 10;
  width: 140px;
  height: 140px;
  top: -3px;
}

.logo-wrapper{
  margin-top: 3em;
  display: flex;
  flex-direction: column;
  align-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 3em;
}

.logo-row{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;

}

.logo-row-item{
  display: flex;
}

.logo-row-img-wrapper{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  width: 50%;
  text-align: center;
}

.logo-row-img{
  text-align: center;
  position: relative;
}

.logo-row-img img{
  width: 200px;
}

.logo-row-img:before {
  content: "";
  z-index: -1;
  position: absolute;
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  display: inline-block;
  top: -10px;
  left: -10px;
  --color-1: #808080;
  --color-2: #a9a9a9;
  --size: 8px;
  background-image: conic-gradient(var(--color-1) 25%,var(--color-2) 25%,var(--color-2) 50%,var(--color-1) 50%,var(--color-1) 75%,var(--color-2) 75%);
  background-size: calc(var(--size)*2) calc(var(--size)*2);
}

.logo-row-data{
  display: flex;
  width: 50%;
  text-align: center;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}

.logo-row-data strong{
  width: 100%;
  text-align: left;
}

.logo-row-data a{
  padding: 5px;
  letter-spacing: 1px;
}

.toolbar-vertical .gin-secondary-toolbar.gin-secondary-toolbar--frontend{
  display: none;
}

.page-node-id-1 .view-galeria .view-content .views-row:nth-child(1),
.page-node-id-1 .view-galeria .view-content .views-row:nth-child(2){
  display: none;
}