@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;700&family=Noto+Sans:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --font-family-base: 'Noto Sans', sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.5;
  
  --font-family-heading: 'Cormorant Garamond', serif;

  --background-color: #fff;

  --text-color: #1c1c1f;
  --link-color: #9D0F1B;

  --pal-1: #F15A2F;
  --pal-2: #4D0046;
  --pal-3: #962757;
  --pal-4: #F7942E;
  --pal-5: #EE2E31;
  --pal-6: #9D0F1B;
  --pal-7: #B87B30;

  --pal-0: #c69656;

}

body {
  min-height: 100vh;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  color: var(--font-color);
  background-color: var(--background-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-family-heading);
  margin-top: 0.8em;
  margin-bottom: 0.8em;
}

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

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(--pal-0);
  text-decoration:none;
}

a:hover{
  color: var(--pal-1);
}

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

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

main{
  flex: 1;
}

::selection { 
  background: #000;
  color: #fff;
}

.maintenance-page{
  position: relative;
  background-image: url('../images/maintenance_bg_01.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:before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: rgb(255,255,255,0.4);
  backdrop-filter: blur(5px);
}

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

.maintenance-page .layout-container .layout-inner:before{
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/k_label_01.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.2));
}

.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;
}

ul.tabs{
  margin: 2em auto;
  padding: 0;
  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{
  margin: 5px;
  display: inline-block;
  padding: 10px 16px;
  letter-spacing: 1px;
  border: 1px solid #676767;
  color: var(--pal-0);
}

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

a.gb,
[type="button"], 
[type="reset"], 
[type="submit"]{
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  color: rgba(0,0,0,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  box-shadow: unset; 
  white-space: nowrap;
  border:1px solid var(--pal-0);
  overflow:hidden;
  position: relative;
  cursor: pointer;
  background: unset;
}

a.gb:hover,
[type="button"]:hover, 
[type="reset"]:hover, 
[type="submit"]:hover{
  background-color: var(--pal-0);
  color: rgba(255,255,255,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);  
}

.site-logo{
  
}

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

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

#main-menu{
  background-color: rgba(255,255,255,1);
  width: 100%;
  height: 86px;
  display: inline-block;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.gin--vertical-toolbar #main-menu{
  top: 60px;
}

#main-menu.stick{
  box-shadow: 0 3px 6px rgba(198, 150, 86, 0.16), 0 3px 6px rgba(198, 150, 86, 0.23);  
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

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

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

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

#main-menu ul.menu li a{
  padding: 0px 12px;
  display: inline-block;
  height: 86px;
  line-height: 86px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: bold;
  position: relative;
  color: var(--text-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#main-menu ul.menu li a:before{
  position: absolute;
  content: "";
  z-index: 1;
  display: inline-block;
  width: 90%;
  background: var(--pal-0);
  bottom: 30px;
  left: 5%;
  height: 0px;
  opacity: 0.0;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#main-menu ul.menu li a.is-active,
#main-menu ul.menu li a:hover{
  color: var(--pal-0);
    transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#main-menu ul.menu li a.is-active:before,
#main-menu ul.menu li a:hover:before{
  background-color: var(--pal-0);
  opacity: 0.2;
  height: 12px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

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

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

.social-icon svg{
  width: 32px;
  height: 32px;
  fill: var(--text-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.social-icon:hover svg{
  fill: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#menu-social{
  padding: 0 10px;
}

#menu-social .social-icons{
  margin: 0;
}

#menu-social a{
  padding: 0 10px;
  display: inline-block;
  line-height: 86px;
  vertical-align: top;
}

#menu-social a svg{
  margin-top: -2px;
  vertical-align: middle;
  width: 26px;
  height: 26px;  
}

#menu-social a:hover svg{

}

.container{
  width: 1260px;
  max-width: 90%;
  margin: 0 auto;
}

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

.container-n{
  width: 940px;
  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;
}

/*
.region-highlighted .messages--status{
  background: #91cf93;
}

.region-highlighted .messages--warning{
  background: #ffda6b;
}

.region-highlighted .messages--error{
  background: #91cf93;
}
*/

.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;
}

.front-section{
  
}

.section-title{
  margin-top: 5vh;
  /*margin-bottom: 5vh;*/
  text-align: center;
  display: inline-block;
  width: 100%;  
}

.section-title h2{
  font-size: 66px;
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 0.2em;
  line-height: 1.2em;
}

.section-title h2:before{
  position: absolute;
  content: "";
  z-index: -1;
  display: inline-block;
  width: 70%;
  background: var(--pal-0);
  bottom: 0;
  left: 15%;
  height: 20px;
  opacity: 0.4;
}

.section-title h3{
  margin-top: 0.4em;
}

.section-more-link{
  text-align: center;
  margin: 2em 0;
}

.section-more-link a{
  display: inline-block;
}

.section-gallery{
  margin-top: 2em;
  margin-bottom: 80px;
  position: relative;
  display: inline-block;
}

#banner{
  width: 100%;
  position: relative;
}

#banner-logo-wrapper{
  padding: 70px 48px;
  background-image: url('../images/k_label_01.svg');
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.2));
}

#banner-logo{
  width: 420px;
  margin-bottom: 2em;
}

#banner .section-inner{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  height: calc(100vh - 86px - 86px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-wrap: wrap;
}

#banner-image-wrapper{
  z-index: -1;
  position: relative;
}

#banner-image-wrapper:before{
  /*
  content: "";
  display: inline-block;
  z-index: 20;
  position: absolute;
  margin: 30px;
  top: 0px;
  left: 0px;
  width: calc(100% - 60px);
  height: calc(100vh - 60px);
  border: 2px solid rgba(255,255,255,0.9);
  border-radius: 30px;
  */
}

#banner-swiper{
  width: 100%;
}

#banner-swiper .swiper-slide{
  height: 0;
  padding-bottom: calc(56.25% - 86px);
  width: 100%;
  background-position: center center;
  background-size: cover;
  border-radius: 6px;
}

#banner-slogan{ 
  font-size: 21.5px;
  text-align: center;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  background: var(--pal-6);
  color: #fff;
  width: calc(100% + 96px);
  margin-left: -48px;
  mix-blend-mode: multiply;
  padding: 5px 0;
}

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

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

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

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

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

footer{
  position: relative;
  background-color: var(--pal-0);
  color:rgba(255,255,255,0.8);
  font-size: 80%;
  letter-spacing: 1px;
  text-transform: uppercase;
}

footer > div{
  display: flex;
}

#footer-left p,
#footer-right p{
  padding: 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,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

footer a:hover{
  color:rgba(0,0,0,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}


#pre-footer{
  padding-top: 2em;
  padding-bottom: 1em;
  margin-top: 10vh;
  background-color: var(--pal-0);
  color:rgba(255,255,255,0.8);
}

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

.pre-footer-block{
  width: 100%;
  display: inline-block;
  vertical-align: top;
  max-width: 100%;
}

#pre-footer-top{
  display: flex;
  justify-content: space-between;
  align-content: center;
  margin-bottom: 0em;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: -59px;
}

#pre-footer-bottom{

}

#pre-footer a{
  color:rgba(255,255,255,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer a:hover{
  color:rgba(0,0,0,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer .social-icons{
  text-align: center;
  margin-top: 0em;
  display: inline-block;
  width: 300px;
}

#pre-footer .social-icon{
  background-color: #fff;
  border-radius: 30px;
  padding: 10px;
  margin: 0 0.5em;
  vertical-align: top;
}

#pre-footer .social-icon svg{
  vertical-align: top;
  width: 32px;
  height: 32px;
  fill: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer .social-icon:hover svg{
  fill: var(--text-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#pre-footer ul.menu{
  text-align: center;
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.5);  
}

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

#pre-footer ul.menu li a{
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 20px;
}

#footer-logo{
  display: inline-block;
  /*filter: brightness(4);*/
}

#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);*/
}

#termekek .section-title{
  margin-bottom: 5vh;
}

.view-termekek-for-recept,
.view-termekek{

}

.view-termekek-for-recept .view-content,
.view-termekek .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.view-termekek .view-content{
  /*justify-content: space-between;*/
}

.view-termekek-for-recept .views-row,
.view-termekek .views-row{
  position: relative;
  width: calc(100% / 4 - 2em);
  margin: 1em;
  display: inline-block;
  text-align: center;

}

.view-termekek-for-recept .views-row .views-field-field-belyegkep,
.view-termekek .views-row .views-field-field-belyegkep{
  max-width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.view-termekek-for-recept .views-row .views-field-field-belyegkep img,
.view-termekek .views-row .views-field-field-belyegkep img{
  display: inline-block;
  vertical-align: top;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-termekek-for-recept .views-row:hover .views-field-field-belyegkep img,
.view-termekek .views-row:hover .views-field-field-belyegkep img{
  transform: scale(1.1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-termekek-for-recept .views-row .views-field-view-node a,
.view-termekek .views-row .views-field-view-node a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 10;
}

.view-termekek-for-recept .views-row .views-field-title h3,
.view-termekek .views-row .views-field-title h3{
  margin-top: 0.4em;
  margin-bottom: 0;
  font-size: 24px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  font-variant-numeric: lining-nums;
}

.view-termekek-for-recept .views-row:hover .views-field-title h3,
.view-termekek .views-row:hover .views-field-title h3{
  color: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-termekek-for-recept .views-row .views-field-view-node,
.view-termekek .views-row .views-field-view-node{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.view-termekek-for-recept .views-row .views-field-field-tulajdonsag,
.view-termekek .views-row .views-field-field-tulajdonsag{
  position: absolute;
  top: 0px;
  left: 0px;
  display: inline-block;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.view-termekek-for-recept .views-row:hover .views-field-field-tulajdonsag,
.view-termekek .views-row:hover .views-field-field-tulajdonsag{
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-termekek-for-recept .views-row .views-field-field-tulajdonsag .field-content,
.view-termekek .views-row .views-field-field-tulajdonsag .field-content{
  display: inline-block;
  width: 100%;
  height: 100%;
}

.view-termekek-for-recept .views-row .views-field-field-tulajdonsag img,
.view-termekek .views-row .views-field-field-tulajdonsag img{
  display: inline-block;
  vertical-align: top;
  max-height: 60px;
}

.view-termekek-for-recept .views-row .views-field-field-tulajdonsag .tti,
.view-termekek .views-row .views-field-field-tulajdonsag .tti{

}

.view-termekek-for-recept .views-row .views-field-field-tulajdonsag .tti:nth-child(1),
.view-termekek .views-row .views-field-field-tulajdonsag .tti:nth-child(1){
  position: absolute;
  top: 5px;
  right: 5px;
}

.view-termekek-for-recept .views-row .views-field-field-tulajdonsag .tti:nth-child(2),
.view-termekek .views-row .views-field-field-tulajdonsag .tti:nth-child(2){
  position: absolute;
  top: 5px;
  left: 5px;
}

.view-termekek-for-recept .views-row .views-field-field-kiszereles-tax,
.view-termekek .views-row .views-field-field-kiszereles-tax{
  /*display: none;*/
  color: #787878;
}

#receptek .section-title{
  margin-bottom: 5vh;
}

.view-receptek{

}

.view-receptek .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.view-receptek .views-row{
  position: relative;
  width: calc(100% / 4 - 2em);
  margin: 1em;
  display: inline-block;

}

.view-receptek .views-row .views-field-field-belyegkep{
  max-width: 100%;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek .views-row:hover .views-field-field-belyegkep{
  transform: scale(0.95);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek .views-row .views-field-field-belyegkep:before{
  position: absolute;
  border-radius: 6px;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0,rgba(0,0,0,.5) 0,transparent 100%);
  z-index: 1;
}

.view-receptek .views-row .views-field-field-belyegkep img{
  display: inline-block;
  vertical-align: top;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek .views-row:hover .views-field-field-belyegkep img{
  transform: scale(1.2);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek .views-row .views-field-title{
  position: absolute;
  bottom: 0;
  padding: 20px;
  left: 0;
  width: calc(100% - 40px);
  color: #fff;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek .views-row:hover .views-field-title{
  transform: scale(0.90);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  bottom: 20px;
}

.view-receptek .views-row .views-field-title h3{
  color: #fff;
  margin-top: 0.4em;
  margin-bottom: 0;  
  font-size: 24px;
}

.view-receptek .views-row .views-field-view-node a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 10;
}

.scrolltop{
  position: fixed;
  right: 1em;
  border-radius: 3px;
  bottom: 1em;
  display: inline-block;
  padding: 0.5em;
  background-color: var(--pal-0);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);  
}

.scrolltop svg{
  fill: #fff;
  width: 30px;
  height: 30px;
  vertical-align: middle;
}


#hol-kaphato{
  border-top: 0.5px solid #c89a5d;
  border-bottom: 0.5px solid #c89a5d;
  margin-top: 5vh;
  padding-bottom: 5vh;
}

#hol-kaphato .section-title {
  margin-bottom: 5vh;
}

#hol-kaphato .section-content{
  display: flex;
  justify-content: center;
}

.shops-wrapper{
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.shop-item{
  display: inline-block;
  margin: 2em;
  display: flex;
  align-items: center;  
}

.shop-image img{
  max-width: 250px;
}

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

.eu-cookie-compliance-message {
  float: unset;
  max-width: 80%;
  flex: 1;
}

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

.eu-cookie-compliance-buttons {
  float: unset;
  max-width: 30%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: center;
}

#popup-text h2{
  font-size: 30px;
  margin: 0;
  margin-bottom: 0.4em;
}

#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.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  box-shadow: unset;
  border: 0;  
  white-space: nowrap;
}

#popup-buttons button.agree-button{
  margin-right: 0.5em;
}

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

#popup-buttons button:hover{
  background-color: var(--pal-0);
  color: rgba(255,255,255,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#sliding-popup button.find-more-button{
  background-color: var(--text-color);
  color: var(--background-color);
  font-weight: bold;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  border: 0;
}

#sliding-popup button.find-more-button:hover{
  color: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#callouts{
  margin-top: -50px;
}

#callouts .container{
  display: flex;
}

.callout-box-wrapper{
  position: relative;
  width: 33%;
  display: inline-block;
  margin: 15px;
}

.callout-box-wrapper:nth-child(1){
  margin-left: 0;
}

.callout-box-wrapper:nth-child(3){
  margin-right: 0;
}

.callout-box-wrapper:before{
  content: "";
  display: inline-block;
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  background-color: rgba(255,255,255,1);
  top: -10px;
  left: -10px;
  z-index: -1;
  position: absolute;
  border-radius: 6px;
}

.callout-box{
  width: 100%;
  height: 0;
  padding-bottom: 200px;
  position: relative;
  display: inline-block;
  overflow: hidden;
  border-radius: 6px;
}

.callout-box:before{
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, rgba(0,0,0,0.70) 0%, rgba(0,0,0,0) 80%, rgba(0,0,0,0) 100%);
  top: 0px;
  left: 0px;
  z-index: 2;
  position: absolute;
  border-radius: 6px;
}

.callout-box-link{
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.callout-box-bg{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;

  background-position: center center;
  background-size: cover;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.callout-box:hover .callout-box-bg{
  transform: scale(1.1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.callout-box-title{
  font-family: var(--font-family-heading);
  font-size: 40px;
  font-weight: bold;
  z-index: 5;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 17px 20px;
  /*width: calc(100% - 40px);*/
  color: #fff;
  line-height: 40px;
}


.callout-box-title:before{
  position: absolute;
  content: "";
  z-index: -1;
  display: inline-block;
  width: 90%;
  background: var(--pal-0);
  bottom: 11px;
  left: 5%;
  height: 30px;
  opacity: 0.8;

}


#intro-swiper{
  width: 100vw;
  overflow: hidden;
}

#intro-swiper .swiper-slide{
  border-radius: 6px;
  height: 500px;
  width: auto;
  flex-shrink: 100%!important;
}

.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;
  transform: none !important;
}

#cover{
  /*margin-top: 85px;*/
}

#cover img{
  vertical-align: top;
  display: inline-block;
  border-radius: 6px;
}
 
#cover .image-background-formatter{
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 6px; 
  vertical-align: top;
  display: inline-block;
  width: 100%;
  aspect-ratio: 32 / 9;
}

#eco{
  color: #fff;
  padding-bottom: 5vh;
  display: inline-block;
  width: 100%;
  background: #962757;
  position: relative;
}

#eco .section-title{
  margin-bottom: 5vh;
}

#eco .section-content{
  position: relative;
}

#eco .section-title h2:before{
  background: #fff;
}

.eco-image{
  position: absolute;
  left: calc(50% - 150px);
  top: 100px;
  display: inline-block;
}

.eco-image img{
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.eco-image img:hover{
  transform: scale(1.1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}


.eco-items-wrapper{
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  padding-bottom: 5vh;
}

.eco-item{
  display: inline-block;
  width: 100%;
  position: relative;
  margin: -2em 0;
  width: 300px;
  display: flex;
  flex-direction: column;  
}

.eco-item:nth-child(even){  
  margin-left: calc(100% - 400px);
  margin-right: 100px;
}

.eco-item:nth-child(odd){
  margin-left: 100px;
  margin-right: calc(100% - 400px);
}

.eco-item .eco-text{
  position: relative;
  z-index: 2;
  text-align: center;
}

.eco-item .eco-ico{
  width: 100%;

  z-index: 1;
  /*filter: invert(1);*/
  mix-blend-mode: multiply;
  opacity: 0.3;
  text-align: center;
  margin-bottom: -40px;
}

.eco-item .eco-ico img{
  width: 120px;
  height: 120px;
}

.eco-item:nth-child(even) .eco-ico{
  margin-right: -20px;

}

.eco-item:nth-child(odd) .eco-ico{

}


.eco-item:nth-child(even) .eco-text{

}

.eco-item:nth-child(odd) .eco-text{

}

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

#mobile-menu-open{
  display: none;
  cursor: pointer;
  width: 46px;
  text-align: center;
  line-height: 86px;
  padding: 0px 10px; 
  vertical-align: middle;
}

#mobile-menu-open svg{
  width: 26px;
  height: 26px;
  fill: #000; 
  vertical-align: middle;
  margin-top: -2px;
}

#mobile-overlay{
  background-color: rgba(255,255,255,0.9);
  position: fixed;
  z-index: 500;
  top: 20vh;
  transform: scale(0.9);
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  opacity: 0;
  transition: all .3s ease-in-out;
  transform-origin: bottom 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: bottom center;
  backdrop-filter: blur(5px);
}

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

#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: 64px;
  height: 64px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

#mobile-menu-close svg{
  fill: var(--text-color);
  width: 64px;
  height: 64px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#mobile-menu-close:hover svg{
  fill: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}


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

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

#mobile-overlay-branding-wrapper{
  text-align: center;
}

.toolbar-horizontal #mobile-menu-close{
  right: 20px;
  top: 60px;
}

#mobile-menu ul{
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: 2em;
}

#mobile-menu ul li{
  display: inline-block;
  width: 100%;
  text-align: center;
}

#mobile-menu ul li a{
  display: inline-block;
  width: 100%;
  padding: 8px 0px;
  font-size: 24px;
  letter-spacing: 1px;
  color: var(--text-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#mobile-menu ul li a:hover{
  color: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);  
}

#mobile-overlay-branding-wrapper{
  margin-top: 3em;
  max-width: 90%;
}

.webform-submission-form{

}

.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{
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

.webform-submission-form .form-item-email{
  float: right;
}

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

.webform-submission-form .form-item-name input:active,
.webform-submission-form .form-item-email input:active{
  outline: unset;
  border: 1px solid #000;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

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

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

.webform-submission-form #edit-actions input{
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 35px;
  color: rgba(0,0,0,1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  box-shadow: unset; 
  white-space: nowrap;
  border:1px solid var(--pal-0);
  overflow:hidden;
  position: relative;
  background-color: rgba(0,0,0,0);
}

.webform-submission-form #edit-actions input:hover{
  background-color: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);  
  color: rgba(255,255,255,1);
}

#map-wrapper{
  margin-top: 5vh;
  display: inline-block;

  width: calc(130%);
  margin-left: -15%;
}

#map-wrapper .geolocation-map-wrapper{
  border-radius: 5px;
}

#product-wrapper{
  display: flex;

}

#product-left{
  width: 47%;
  display: inline-block;
  margin-right: 3%;
}

#product-right{
  width: 47%;
  margin-left: 3%;
  display: inline-block;
}

.view-receptek-for-termek{
  margin-top: 5vh;
}

.view-receptek-for-termek .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.view-receptek-for-termek .views-row{
  position: relative;
  width: calc(100% / 4 - 1.5em);
  margin: 1em;
  display: inline-block;
}

.view-receptek-for-termek .views-row .views-field-field-belyegkep{
  max-width: 100%;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek-for-termek .views-row:hover .views-field-field-belyegkep{
  transform: scale(0.95);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek-for-termek .views-row .views-field-field-belyegkep:before{
  position: absolute;
  border-radius: 6px;
  content: "";
  display: inline-block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0,rgba(0,0,0,.5) 0,transparent 100%);
  z-index: 1;
}

.view-receptek-for-termek .views-row .views-field-field-belyegkep img{
  display: inline-block;
  vertical-align: top;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek-for-termek .views-row:hover .views-field-field-belyegkep img{
  transform: scale(1.2);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek-for-termek .views-row .views-field-title{
  position: absolute;
  bottom: 0;
  padding: 20px;
  left: 0;
  width: calc(100% - 40px);
  color: #fff;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-receptek-for-termek .views-row:hover .views-field-title{
  transform: scale(0.90);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  bottom: 20px;
}

.view-receptek-for-termek .views-row .views-field-title h3{
  color: #fff;
  margin-top: 0.4em;
  margin-bottom: 0;  
  font-size: 24px;
}

.view-receptek-for-termek .views-row .views-field-view-node a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 10;
}

.view-receptek-for-termek .views-row:first-child{
  margin-left: 0;
}

.view-receptek-for-termek .views-row:last-child{
  margin-right: 0;
}

#product-wrapper .field--name-field-belyegkep img{
  border-radius: 6px;
}
#product-wrapper .field--name-field-osszetetel .field__label{

  font-weight: bold;
  letter-spacing: 1px;
  font-size: 95%;
  text-transform: uppercase;

}

#product-wrapper .field--name-field-kiszereles-tax{
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  color: #787878;
  margin-bottom: 1em;
}

#product-wrapper h2{
  margin-bottom: 0.4em;
  color: var(--pal-0);
  font-variant-numeric: lining-nums;  
}

#product-wrapper .field--name-field-alcimsor{
  font-size: 20px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 1em;
}

#product-wrapper .field--name-field-tulajdonsag{
  margin-top: 1em;
}

#product-wrapper .field--name-field-tulajdonsag .views-element-container{
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
}

#product-wrapper .field--name-field-tulajdonsag .tti{
  margin-right: 10px;
  display: inherit;
}

#product-wrapper .field--name-field-forgalmazo .view-header{

}

#product-wrapper .product-cart{
  margin-top: 1em;
}

#product-wrapper .product-cart-price{
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: bold;
}

.view-forgalmazo-for-termek .view-header{
  margin-top:1em;
  padding-top: 1em;
  margin-bottom: 1em;
}

.view-forgalmazo-for-termek .view-header h4{
  margin: 0;
}

.view-forgalmazo-for-termek .view-content{
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.view-forgalmazo-for-termek .view-content .views-row{
  margin-right: 1em;
}

.view-forgalmazo-for-termek .view-content .views-row .views-field-field-belyegkep,
.view-forgalmazo-for-termek .view-content .views-row .views-field-field-belyegkep a,
.view-forgalmazo-for-termek .view-content .views-row .views-field-field-belyegkep a img{
  display: inline-block;
  vertical-align: top;
}

.view-forgalmazo-for-termek .view-content .views-row .views-field-field-belyegkep{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;  
}

.view-forgalmazo-for-termek .view-content .views-row .views-field-field-belyegkep a img{
  max-width: 120px;
}

#mobile-menu-wrapper .social-icons{
  text-align: center;
  margin-top: 2em;
  margin-bottom: 2em;
  display: inline-block;
  width: 300px;
}

#mobile-menu-wrapper .social-icon{
  background-color: var(--pal-0);
  border-radius: 30px;
  padding: 10px;
  margin: 0 0.5em;
  vertical-align: top;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#mobile-menu-wrapper .social-icon:hover{
  background-color: var(--text-color);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#mobile-menu-wrapper .social-icon svg{
  vertical-align: top;
  width: 32px;
  height: 32px;
  fill: #fff;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

#mobile-menu-wrapper .social-icon:hover svg{
  fill: #fff;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}


#recept-wrapper{
  display: flex;

}

#recept-left{
  width: 47%;
  display: inline-block;
  margin-right: 3%;
}

#recept-right{
  width: 47%;
  margin-left: 3%;
  display: inline-block;
}

#recept-wrapper .field--name-field-belyegkep img{
  border-radius: 6px;
}

#recept-wrapper h2{
  margin-bottom: 0.4em;
  color: var(--pal-0);
}

#kapcsolodo-termekek{
  margin-top: 
}

.view-termekek-for-recept{
  margin-top: 5vh;
}

.product-cat-title h2{
  font-variant-numeric: lining-nums;
  /*color: #aaa;*/
  color: var(--pal-0);
  text-align: center;
  display: inline-block;
  padding: 0px 20px;
  background-color: #fff;
}

.product-cat-title{
  position: relative;
  width: 100%;
  text-align: center;
}

.product-cat-title:before{
  content: "";
  position: absolute;
  left: 0;
  z-index: -1;
  top: calc(50% + 12px);
  height: 1px;
  /*background-color: #aaa;*/
  background-color: var(--pal-0);
  width: 100%;
  opacity: 0.5;
  display: inline-block;
}

.product-cat-title:after{

}

#block-kanalkakremek-page-title{
  text-align: center;
}

.region-title{

}

h1.page-title{
  position: relative;
  text-align: center;
  display: inline-block;
  line-height: 1.2em;
}

h1.page-title:before {
  position: absolute;
  content: "";
  z-index: -1;
  display: inline-block;
  width: 70%;
  background: var(--pal-0);
  bottom: 0;
  left: 15%;
  height: 20px;
  opacity: 0.4;
}

#menu-user{
  padding: 0 10px;
  line-height: 86px;
  vertical-align: top;
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
  display: none;
}

.user-logged-in #menu-user{
  display: inline-block;
}

#menu-user:after{
  content: "";
  display: inline-block;
  position: relative;
  height: 20px;
  width: 1px;
  right: -10px;
  top: 5px;
  background: rgba(0,0,0,0.5);
}

#menu-user a{
  position: relative;
  padding: 0 10px;
  display: inline-block;
  line-height: 86px;
  vertical-align: top;  
}

#menu-user a svg{
  margin-top: -2px;
  vertical-align: middle;
  width: 26px;
  height: 26px;  
}


#menu-cart {
  padding: 0 10px;
  line-height: 86px;
  vertical-align: top;
  margin-right: 10px;
  padding-right: 10px;
  position: relative;  
  display: none;
}

.user-logged-in #menu-cart{
  display: inline-block;
}

#menu-cart:after{
  content: "";
  display: inline-block;
  position: relative;
  height: 20px;
  width: 1px;
  right: -10px;
  top: 5px;
  background: rgba(0,0,0,0.5);
}

#menu-cart a{
  position: relative;
  padding: 0 10px;
  display: inline-block;
  line-height: 86px;
  vertical-align: top;  
}

#menu-cart a svg{
  margin-top: -2px;
  vertical-align: middle;
  width: 26px;
  height: 26px;  
}

#menu-cart a span{
  border-radius: 50%;
  background: #f00;
  color: #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-block;
  z-index: 10;
  font-stretch: 70%;
  font-weight: bold;
  height: 1em;
  width: 1em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  align-content: center;
  padding: 5px;
}

.user-logout-confirm .form-actions{
  text-align: center;
}

.user-logout-confirm .form-actions .button{
  margin: 5px;
}

.view-commerce-cart-form table{
  width: 100%;
}

.view-commerce-cart-form .views-field-total-price__number{
  text-align: right;
}

.view-commerce-cart-form .views-field-remove-button{

}

.view-commerce-cart-form .views-field-edit-quantity{
  text-align: center;
}

.view-commerce-cart-form .views-field-unit-price__number{
  text-align: center;
}

.view-commerce-cart-form .views-field-purchased-entity{
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
}

.view-commerce-cart-form .form-actions{
  margin-top: 2em;
  display: flex;
  justify-content: space-between;
}

.view-products .view-content{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.view-products .view-content{
  /*justify-content: space-between;*/
}

.view-products .views-row{
  position: relative;
  width: calc(100% / 4 - 2em);
  margin: 1em;
  display: inline-block;
  text-align: center;

}

.view-products .views-row .views-field-field-galeria{
  max-width: 100%;
  overflow: hidden;
  border-radius: 6px;
}

.view-products .views-row .views-field-field-galeria img{
  display: inline-block;
  vertical-align: top;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-products .views-row:hover .views-field-field-galeria img{
  transform: scale(1.1);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-products .views-row .views-field-view-node a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  z-index: 10;
}

.view-products .views-row .views-field-title h3{
  margin-top: 0.4em;
  margin-bottom: 0;
  font-size: 24px;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  font-variant-numeric: lining-nums;
}

.view-products .views-row:hover .views-field-title h3{
  color: var(--pal-0);
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-products .views-row .views-field-view-node{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  display: inline-block;
  width: 100%;
  height: 100%;
}

.view-products .views-row .views-field-field-tulajdonsag{
  position: absolute;
  top: 0px;
  left: 0px;
  display: inline-block;
  z-index: 2;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.view-products .views-row:hover .views-field-field-tulajdonsag{
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.2, 0.0, 0, 1.0);
}

.view-products .views-row .views-field-field-tulajdonsag .field-content{
  display: inline-block;
  width: 100%;
  height: 100%;
}

.view-products .views-row .views-field-field-tulajdonsag img{
  display: inline-block;
  vertical-align: top;
  max-height: 60px;
}

.view-products .views-row .views-field-field-tulajdonsag .tti{

}

.view-products .views-row .views-field-field-tulajdonsag .tti:nth-child(1){
  position: absolute;
  top: 5px;
  right: 5px;
}

.view-products .views-row .views-field-field-tulajdonsag .tti:nth-child(2){
  position: absolute;
  top: 5px;
  left: 5px;
}

.view-products .views-row .views-field-field-kiszereles-tax{
  /*display: none;*/
  color: #787878;
}