:root {
  --primary: rgba(27, 176, 206, 1);
  --primary-color-accent: rgba(27, 176, 206, 0.7);
  --primary-color-transp-90: rgba(27, 176, 206, 0.9);
  --primary-color-filter: invert(49%) sepia(91%) saturate(446%) hue-rotate(142deg) brightness(101%) contrast(85%);
  --white: #fff;
  --dark: #666666;
  --base-font-size: 14px;
}

@font-face {
  font-family: 'Futura-Now';
  src: url('/font/Futura-Now-Headline.eot'); /* IE9 Compat Modes */
  src: url('/font/Futura-Now-Headline.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
       url('/font/Futura-Now-Headline.woff2') format('woff2'), /* Super Modern Browsers */
       url('/font/Futura-Now-Headline.woff') format('woff'), /* Pretty Modern Browsers */
       url('/font/Futura-Now-Headline.ttf')  format('truetype'), /* Safari, Android, iOS */
       url('/font/Futura-Now-Headline.svg#svgFontName') format('svg'); /* Legacy iOS */
}


#body {
	font-family: 'Futura-Now', sans-serif;
	}

a {
	color: var(--primary);
}

a:hover {
	color: var(primary-color-accent);
}

/* change addressbar style */ 

h2.addressbar {
	margin: 0;
}

input[type='range']::-moz-range-track {
	background: none;
	}

input[type='range']::-moz-range-thumb {
        -moz-appearance: none;
        width: 3rem;
        height: 3rem;
        border-radius: 100%;
        border: none;
        background: #b38c85;
        z-index: 3;
        cursor: pointer;
	}

input[type='range']::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 3rem;
        height: 3rem;
        border-radius: 100%;
        border: none;
        background: #b38c85;
        z-index: 3;
        cursor: pointer;
    }

.closeBtnColor {
        filter: invert(1);
	}

a#closefilter, a#closefiltercomplete, input#clearfilter {
        filter: invert(0);
		text-transform: uppercase;
		background-color: transparent;
	}

a#closefilter:hover, a#closefiltercomplete:hover, input#clearfilter:hover  {
        filter: invert(0);
	}
	
a#closefiltercomplete:hover, input#clearfilter:hover {
        background-color: var(--white);
		color: var(--primary);
	}
	

.action {
	color: #fff;
	filter: invert(0);
	line-height: 1.1rem;
   }

.card {
        color: var(--dark) !important
    }

.ziacard {
        color: var(--dark) !important;
        padding-top: 20px
    }

.text {
        text-align: center;
        line-height: 1.5;
        color: var(--dark)!important;
 }
 
.dark {
		color: var(--dark)!important;
}

.white, .white a {
	color: var(--white)!important;
}

.action {
	filter: invert(0);
	line-height: 1.1rem;
   }

html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

@media screen and (prefers-reduced-motion: reduce) {
html {
		scroll-behavior: auto;
	}
}

@media only screen and (max-width: 480px) {
section {
  scroll-margin-top: 80px;
}
}

body {
	margin: 0 auto;
	width: 100%;
	padding: 0;
	/* max-width: 30rem;*/
	color: var(--white);
	position: relative;
	font-family: 'Futura-Now', sans-serif; 
}

.fs-12 {
	font-size: 12px;
}

.fs-14 {
	font-size: 14px;
}

.fs-16 {
	font-size: 14px;
}

section, footer {
	margin: 0 auto;
	max-width: 30rem;
	width: 100%;
	position: relative;
	margin-top: 20px;
	margin-bottom: 20px;
}


section {
	margin-top: 0px;
}


/* Section with Dark background */

.darkbg, .darkbg a {
	color: var(--white);
}

.darkbg {
	background: var(--primary);
}

.whitebg, .whitebg a {
	color: var(--primary);
}

.whitebg {
	background: var(--white);
}

.whitebg p {
	color: var(--dark);
}

.transpbg {
	background: transparent;
}

.wrapper {
	-webkit-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    -moz-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
}


.wrapper, .wrapperextra {
	/*background: var(--white);*/
   	position: relative;
	border: 1px solid var(--white);
}

.wrapperextra.addshadowtop {
	box-shadow: none;
	animation-name: addshadowtop;
	-webkit-animation: addshadowtop 1s;
	-moz-animation: addshadowtop 1s;
	-o-animation: addshadowtop 1s;
	animation: addshadowtop 1s ease-in-out 1 forwards;

}

@keyframes addshadowtop {
		0% {box-shadow: none; top: -500px;}
		
		90% {box-shadow: none;}
  
		100% {-webkit-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    -moz-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4); top: 0px;}
}

.wrapperextra.addshadowbottom {
	box-shadow: none;
	animation-name: addshadowbottom;
	-webkit-animation: addshadowbottom 1s;
	-moz-animation: addshadowbottom 1s;
	-o-animation: addshadowbottom 1s;
	animation: addshadowbottom 1s ease-in-out 1 forwards;

}

@keyframes addshadowbottom {
		0% {box-shadow: none; bottom: -500px;}
		
		90% {box-shadow: none;}
  
		100% {-webkit-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    -moz-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4); bottom: 0px;}
}

.wrapperextra .b { 
	width: 10em;
	height: 5em;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 5em 5em 0 0;
	-webkit-border-radius: 5em 5em 0 0;
	-moz-border-radius: 5em 5em 0 0;
	background-color: #fff;
	z-index:1;
	border: 0;
}
					
.wrapperextra .c  { 
	width: 10em;
	height: 5em;
	position: absolute;
	top: 0rem;
	left: 50%;
	transform: translateX(-50%);
	border-radius: 0 0 5em 5em;
	-webkit-border-radius: 0 0 5em 5em;
	-moz-border-radius: 0 05em 5em;
	background-color: #fff;
	z-index:1;
	border: 0;
	}

footer .wrapper {
	display: block;
	background: transparent;
	border: 0;
	box-shadow: none;
	width: 100%;
}

@media only screen and (max-width: 420px) {
  body {
		margin-top: 0px;
		margin-bottom: 0px;
}
}

#modal, #menu, #modalfilter {
  position: absolute;
  z-index: 3;
  width: 100%;
  bottom: 0;
  -webkit-transition: top 0.2s ease-out, opacity 0.1s ease-out;
  transition: top 0.2s ease-out, opacity 0.1s ease-out;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
#closeModal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: center;
  margin: 1rem 1rem 0 0;
}
#close, #closefilter, #closefiltercomplete, #clearfilter  {
  padding: 0.75rem;
  cursor: pointer;
  line-height: 0;
}

#closefiltercomplete, #clearfilter  {
	padding: 1rem;
    border: 1px solid #fff;
    color: #fff;
}

.icon {
  width: 1.5rem;
  height: 1.5rem;
}
#modalView,
#modalfilterView,
#copyView,
#qrView,
#menuView,
#keyInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--white);
}

#modalfilterView {
	color: var(--white);
}

#copyView p,
#keyInfo p {
  margin: 1rem 2em 2rem;
  text-align: center;
}
#copyURL,
#dlKey {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 5rem;
  padding: 0.75rem 1.5rem;
  border: none;
  outline: none;
  cursor: pointer;
}
#copyURL span,
#dlKey span {
  margin-left: 0.5rem;
}
#qrView h2,
#qrView p,
#menuView h2,
#menuView p {
  margin: 0 2rem 0.5rem;
}
#qr {
  margin: 1rem 2rem 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: 0.5rem;
}
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  padding: 6rem 3rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-bottom: 0;
  flex-direction: column;
}
#logo {
  max-height: 6rem;
  text-align: center;
  color: gray;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#topActions, #filterActions {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  left: 0;
  right: 0;
  top: 0;
}

#topActions > div, #filterActions > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}
#topActions a {
  padding: 0.75rem;
  cursor: pointer;
  border-radius: 100%;
  line-height: 0;
  margin: 0;
}

#filterActions a {
  padding: 0;
  cursor: pointer;
  border-radius: 100%;
  line-height: 0;
  margin: 0;
}

main {
  padding: 0rem;
  margin-top: 0px;
}


.profile {
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: var(--white);
}
.profile img {
  border-radius: 100%;
  text-align: center;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-top: -4.5rem;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  box-sizing: content-box;
  pointer-events: auto;
  user-select: none;
  margin-top: -6rem;
  /* z-index: 9999; */
}

img.slider {
  margin-top: 0;
}

.profile h2, .profile h3, .profile a {
	color:var(--primary);
} 

.profile a {
	font-weight: 600;
}

.profile a:hover {
	color:var(--primary-color-accent);
}

.bizaddr {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 0px !important;
  padding: 0 1rem;
  color: var(--dark);
}

.bizaddr:hover {
  color: var(--primary);
}


#info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* margin-top: 5.5rem; */
  line-height: 1.25;
  word-break: break-word;
}

.name {
  font-weight: bold;
  font-size: 1.5rem;
  margin: 0;
}

#info p.name {
	font-family: ;
	letter-spacing: 0.05em;
	font-size: 30px;
}

.jobtitle {
  font-size: 1rem;
  margin: 0.25rem 0 0.25rem 0;
}
.desc,
.textC {
  font-size: 0.875rem;
  white-space: pre-line;
  line-height: 1.5;
  /* margin: 1rem; */
        margin: -2rem 1rem 1rem 1rem;
}
.textC {
  font-size: 1rem;
  margin: 2rem 1rem;
        margin: -2rem 1rem 1rem 1rem;
}
.actions {
	/*padding: 1rem;*/
	margin-top: 2rem;
	display: -webkit-box;
	display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.actionsC {
  width: 33.33%;
  z-index: 1;
}
.actionBtn {
  padding: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.actionBtn a {
  border-radius: 100%;
  padding: 0.75rem;
  line-height: 0;
  background-color: var(--primary);
}

.actionBtn a:hover {
  opacity: 0.6;
}

.actionBtn p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}
.secondary {
  margin-top: 1rem;
}
.secBtn {
  padding: 1rem;
}
a {
  text-decoration: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
#cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}
#vcard, .hazirend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  border-radius: 5rem;
  /* margin-top: 1.5rem; */
  margin-bottom: 0.5rem;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  line-height: 0;
}

.hazirend {
  padding: 0.5rem 1.5rem;
}

#vcard .icon, .hazirend .icon  {
  margin-right: 0.5rem;
}
#vcard p, .hazirend p {
  margin: 0;
}
.attachments {
  /* margin-top: 1.5rem; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.section {
  font-weight: bold;
  text-align: center;
  font-size: 1.5rem;
  margin: 3rem 1rem 1rem;
}
.content {
  overflow: hidden;
  border-radius: 0.5rem;
  margin-top: 1rem;
}
.content img {
  display: block;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
}
.embedded {
  position: relative;
  padding-top: 56.25%;
  padding-bottom: 2%;
}
.embedded iframe {
  position: absolute;
  padding-bottom: 2%;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.music,
.video {
  width: 100%;
}
.mediaC {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
video {
  width: 100%;
}
.controls {
  /* padding: 2rem 1rem; */
  font-size: 0.875rem;
  text-align: center;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.pd2 {
  padding: 2rem 1rem !important;
}
.prodInfo .desc {
  margin: -1rem 0 0;
}

.label {
  display: inline-block;
  font-size: 1rem;
  margin-top: 1rem;
  border-radius: 5rem;
  letter-spacing: 1px;
  padding: 0.75rem 1.5rem;
}
.label p {
  margin: 0;
}
.title {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0 0 0.5rem;
}
.mediaInfo {
  margin: 0;
}
.pCtrl,
.docDl {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  padding-bottom: 15px;
}
.docDl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.seekBar {
  width: 100%;
  height: 0.5rem;
  margin-top: 2rem;
  border-radius: 5rem;
  background: #adb5bd;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-bottom: 15px;
}
.playPause,
.dlBtn {
  margin: 2rem 0.5rem 0;
  padding: 0.75rem;
  border-radius: 5rem;
  line-height: 0;
  cursor: pointer;
}
.pause {
  display: none;
}

footer a {
  text-decoration: underline;
  color: inherit;
}

.pronouns{display:block;font-size:.9rem;opacity:.8;font-weight:normal;margin:0 0 .5rem}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0rem 0rem;
  box-sizing: border-box;
  padding-bottom: 0;
  padding-bottom: 0
}

@media only screen and (max-width: 480px) {
header {
    animation-name: mainmargintop;
	-webkit-animation: mainmargintop 2s;
	-moz-animation: mainmargintop 2s;
	-o-animation: mainmargintop 2s;
	animation: mainmargintop 2s ease-in-out 1 forwards;

}

@keyframes mainmargintop {
		0% {margin-top: 0;}
		
		90% {margin-top: 0;}
  
		100% {margin-top: 85px;}
	}
}



 .headerImgC {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  height: 100%;
  overflow: hidden;
}

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

 .headerImgC {
	background: none;
}

}

#cover {
  position: relative;
  z-index: 0;
  grid-column: 1;
  grid-row: 1;
  width: 100%;
  height: 20rem;
  object-position: top center;
  object-fit: cover;
}
 
@media only screen and (min-width: 480px) {

#cover img {
	display: none;
}

}

#logo {
  max-height: 6rem;
  pointer-events: none;
  user-select: none;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
  justify-self: center;
}


.cut {
	position:fixed; 
	bottom:-200px;
	right: 0;
}

.cut img {
	width: 450px;
}

@media (max-width: 1600px) {

.cut img {
	
	width: 350px;
}
	
}

@media only screen and (max-width: 1050px) {
  .cut img {
	
	display:none!important;
}
}


.bglayer {
	position: fixed; 
	left: 0px; 
	z-index: 0; 
	top: 0;
}

.bglayer img {
	width: 100%;
}

.bgleft {
	position:fixed; 
	z-index: 1;
	mix-blend-mode: luminosity;
	top: 0;
}

/**@media only screen and (max-width: 900px) {
  .bgright, .bgleft, .bglayer {
	display:none;
}
}**/

.section-00 img, .section-00-menu img, .bgleft.section-01 img, .bgleft.section-02 img, .bgleft.section-03 img, .bgleft.section-04 img, .bgleft.section-05 img {
	position: fixed;
    left: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
}

.section-00 img, .section-00-menu img, .bgleft.section-01 img, .bgleft.section-02 img, .bgleft.section-03 img, .bgleft.section-05 img {
	left: -200px;
}

.section-00-menu img {
	-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)));
	mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 70%);
}

@media (max-width: 1200px) {

.section-00-menu img {
	-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.2)), to(rgba(0,0,0,0)));
	mask-image: linear-gradient(to right, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0) 60%);
}

}

.section-00, .section-00-menu, .bgleft.section-01, .bgleft.section-02, .bgleft.section-03, .bgleft.section-04, .bgleft.section-05  {
	position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.bgright {
	position:fixed; 
	mix-blend-mode: normal;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.bgright img {
	/*-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.3)), to(rgba(0,0,0,0)));
	mask-image: linear-gradient(to left, rgba(0,0,0,0.3) 0, rgba(0,0,0,0) 100%);*/
	position: fixed;
    right: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
}


#bemutatkozas .bgright img {
	-webkit-mask-image:-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,0.3)), to(rgba(0,0,0,0)));
	mask-image: linear-gradient(to left, rgba(0,0,0,0.3) 0, rgba(0,0,0,0) 100%);
	
}

.bggradient {
	position: fixed; 
	top: 0; 
	left: 0;
	background: rgb(235,236,237);
	background: -moz-linear-gradient(90deg, rgba(235,236,237,0) 10%, rgba(235,236,237,0.499124649859944) 20%, rgba(235,236,237,0.7540266106442577) 25%, rgba(235,236,237,1) 35%, rgba(235,236,237,1) 65%, rgba(235,236,237,0.7484243697478992) 75%, rgba(235,236,237,0.5019257703081232) 80%, rgba(235,236,237,0) 90%);
	background: -webkit-linear-gradient(90deg, rgba(235,236,237,0) 10%, rgba(235,236,237,0.499124649859944) 20%, rgba(235,236,237,0.7540266106442577) 25%, rgba(235,236,237,1) 35%, rgba(235,236,237,1) 65%, rgba(235,236,237,0.7484243697478992) 75%, rgba(235,236,237,0.5019257703081232) 80%, rgba(235,236,237,0) 90%);
	background: linear-gradient(90deg, rgba(235,236,237,0) 10%, rgba(235,236,237,0.499124649859944) 20%, rgba(235,236,237,0.7540266106442577) 25%, rgba(235,236,237,1) 35%, rgba(235,236,237,1) 65%, rgba(235,236,237,0.7484243697478992) 75%, rgba(235,236,237,0.5019257703081232) 80%, rgba(235,236,237,0) 90%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ebeced",endColorstr="#ebeced",GradientType=1);
	width: 100%;
	height: 100%;
	
}

@media only screen and (min-width: 1600px) {

.bggradient {
	left: 0px;
}

}

.button {
	color:var(--white);
	background-color: var(--primary);
	width: 50%;
	padding: 1rem 1.5rem!important;
	border: 1px solid var(--primary);
	
}

.button:hover {
	color: var(--primary);
	opacity: 0.6;
	border: 1px solid var(--primary);
	width: 50%;
}

.headerImgText p {
	margin: 0;
	padding: 0;
	text-transform:uppercase;
	color: var(--white);
	letter-spacing: 1px;
}

@media only screen and (max-width: 480px) {
.headerImgText p {
	display:block
}
}

.price, .hazirend-class {
	display: grid;
	grid-template-columns: auto;
	grid-template-rows: auto;
	height: 100%;
	overflow: hidden;
	padding: 20px 0;
	/*background-attachment: fixed;*/
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	margin: 0;
	font-size: 1rem;
}


.price .icon, .hazirend-class .icon {
	width: 2.5rem;
	height: 2.5rem;
}

.table-name {
	text-align:left;
	width: 230px;
	vertical-align: text-top;
	text-transform: uppercase;
	padding: 5px;
	line-height: 1.1;
}

span.subtext {
	font-size: 12px;
	text-transform: none;
}

.table-time {
	vertical-align: text-top;
	padding: 5px;
}

.table-price {
	text-align: right;
	width: 102px;
	vertical-align: text-top;
	padding: 5px;
}

.block {

}

.top {
	--offset: 50px;
	margin-top: calc(100vh + var(--offset));
}


.profile .profile-photo {
	/* background-image: url("/img/profil.jpg");*/
	background-size: contain;
	border-radius: 100%;
    pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	width: 10rem;
	height: 10rem;
	border-radius: 100%;
	box-sizing: content-box;
	pointer-events: auto;
	margin-top: -6rem;
	transition: all 200ms ease 200ms;
	z-index: 2;
}

.profile .profile-photo:hover {
	/*background-image: url("/img/profil-hover.jpg");*/
	
}


@media only screen and (max-width: 480px) {
.xs {
	display: none;
}
}

@media (min-width: 480px) and (max-width: 768px) {
.sm {
	display: none;
}
}

@media (min-width: 768px) {
.md {
	display: none;
}
}

.background-video {
	width: 550px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: -1;
}

.background-video::after {
    content: ""; // ::before and ::after both require content
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, #eaee44, #33d0ff);
    opacity: .7;
}

/* Nav scrolling */

ul#nav-serialscrolling {
	list-style:none;
	filter: drop-shadow(0px 0px 36px black);
}

#nav-serialscrolling {
  position: fixed;
  right: 250px;
  /* width: 250px; */
  float: left;
  z-index: 1000;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 1900px) {
   #nav-serialscrolling {
	right: 400px;
}
}

@media (min-width: 1800px) and (max-width: 1900px) {
   #nav-serialscrolling {
	right: 350px;
}
}


@media (min-width: 1700px) and (max-width: 1800px) {
   #nav-serialscrolling {
	right: 300px;
}
}

@media (min-width: 1600px) and (max-width: 1700px) {
   #nav-serialscrolling {
	right: 250px;
}
}


@media (min-width: 1500px) and (max-width: 1600px){
   #nav-serialscrolling {
	right: 200px;
}
}

@media (min-width: 1400px) and (max-width: 1500px) {
   #nav-serialscrolling {
	right: 150px;
}
}


@media (min-width: 1300px) and (max-width: 1400px) {
   #nav-serialscrolling {
	right: 100px;
}
}


@media (min-width: 1200px) and (max-width: 1300px) {
   #nav-serialscrolling {
	right: 50px;
}
}

@media (min-width: 1100px) and (max-width: 1200px) {
   #nav-serialscrolling {
	left: 50px;
}
}

@media only screen and (max-width: 1100px) {
   #nav-serialscrolling {
	display:none;
}
}

#nav-serialscrolling .sub-link {
  position: relative;
  display: block;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  opacity: 0.8;
  transition: 300ms;
  text-transform: uppercase;
}

#nav-serialscrolling .sub-link:hover,
#nav-serialscrolling .sub-link.is-current {
  opacity: 1;
  color: var(--primary-color-accent);
}

#nav-serialscrolling .sub-link:before,
#nav-serialscrolling .sub-link:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 100%;
  transition: 300ms;
}

#nav-serialscrolling .sub-link:before {
  left: -30px;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(255, 255, 255, 1);
}

#nav-serialscrolling .sub-link:after {
  left: -23px;
  width: 5px;
  height: 5px;
  background-color: var(--primary-color-accent);
  opacity: 0;
}

#nav-serialscrolling .sub-link.is-current:before {
  border-color: var(--primary-color-accent);
}

#nav-serialscrolling .sub-link.is-current:after {
  opacity: 1;
  background-color:
}

/* Currency */

.money::after {
    content:" Ft";
}

.money.from::after {
    content:" Ft-tól";
}

/* Color filter for svg color */

.primary-color-filter {
	filter: var(--primary-color-filter);
}

/* Floating share */

#floatingSocialShare {
	z-index: 1001;
}

#floatingSocialShare a {
	margin-bottom: 5px;
}

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

#floatingSocialShare a {
	margin-bottom: 0px;
}

#floatingSocialShare .top-right  {
	animation-name: floating-fade;
	-webkit-animation: floating-fade 3s;
	-moz-animation: floating-fade 3s;
	-o-animation: floating-fade 3s;
	animation: floatingfade 3s ease-in-out 1 forwards;
}

@keyframes floatingfade {
  0% {margin-bottom: -200px;}
  100% {-margin-bottom: 0;}
}

}

@keyframes scale-01 {
  0% {
    transform: scale(1);
  }
  
  1% {
    transform: scale(1.2);
  }

  2% {
    transform: scale(1);
  }

}

#floatingSocialShare .facebook, #floatingSocialShare .linkedin, #floatingSocialShare .twitter, #floatingSocialShare .viber, #floatingSocialShare .whatsapp {
    background-color: var(--primary)!important;
}
	
#floatingSocialShare .facebook:hover {
    background-color: #1877f2!important;
}

#floatingSocialShare .linkedin:hover {
    background-color: #0077b5!important;
}

#floatingSocialShare .twitter:hover {
    background-color: #000!important;
}

#floatingSocialShare .viber:hover {
    background-color: #665cac!important;
}

#floatingSocialShare .whatsapp:hover {
	background-color: #25d366!important;
}

.designimage {
	width: 100%; 
	max-height: 200px; 
	object-fit:cover; 
	object-position: center; 
	margin-top: 20px;
	-webkit-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    -moz-box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
    box-shadow: 6px 9px 36px 4px rgba(143, 143, 143, 0.4);
	filter: grayscale(0.4);
}

p.text-01 {
  animation: scale-01 80000ms ease-in-out infinite;

}

@keyframes scale-01 {
  0% {
    transform: scale(1);
  }
  
  1% {
    transform: scale(1.2);
  }

  2% {
    transform: scale(1);
  }


  30% {
    transform: scale(1);
  }

  31% {
    transform: scale(1.2);
  }

  32% {
    transform: scale(1);
  }
 

  60% {
    transform: scale(1);
  }

  61% {
    transform: scale(1.2);
  }
  
  62% {
    transform: scale(1);
  } 
 
  100% {
    transform: scale(1);
  }
}


p.text-02 {
  animation: scale-02 80000ms ease-in-out infinite;

}

@keyframes scale-02 {
  10% {
    transform: scale(1);
  }
  
  11% {
    transform: scale(1.2);
  }

  12% {
    transform: scale(1);
  }


  40% {
    transform: scale(1);
  }

  41% {
    transform: scale(1.2);
  }

  42% {
    transform: scale(1);
  }
 

  70% {
    transform: scale(1);
  }

  71% {
    transform: scale(1.2);
  }
  
  72% {
    transform: scale(1);
  } 
 
  100% {
    transform: scale(1);
  }
}


p.text-03 {
  animation: scale-03 80000ms ease-in-out infinite;

}

@keyframes scale-03 {
  20% {
    transform: scale(1);
  }
  
  21% {
    transform: scale(1.2);
  }

  22% {
    transform: scale(1);
  }


  50% {
    transform: scale(1);
  }

  51% {
    transform: scale(1.2);
  }

  52% {
    transform: scale(1);
  }
 

  80% {
    transform: scale(1);
  }

  81% {
    transform: scale(1.2);
  }
  
  82% {
    transform: scale(1);
  } 
 
  100% {
    transform: scale(1);
  }
}

/* Lightbox */

a.venobox.vbox-item:hover {
	opacity: 0.8;
}

.vbox-prev {
    left: 20%!important;
}

.vbox-next {
    right: 20%!important;
}

/* Logo img */

img.logoimg {
	margin: 20px auto 10px auto;
    padding: 0;
    height: auto;
    display: block;
    align-items: center;
    border-radius: 0;
}

img.logoimg:hover {
	opacity: 0.8;
}

/* Custom checkbox */

.product-list-filter .container  {
							position: relative;
							padding-right: 25px;
							font-size: 16px;
							-webkit-user-select: none;
							-moz-user-select: none;
							-ms-user-select: none;
							user-select: none;
							line-height: 2;
							display: flex;
							justify-content: center;
							align-items: center;
							
						}
						
						.product.filter-header {
							display: block;
						}
						
						.product-list-filter .container input {
							position: absolute;
							opacity: 0;
							height: 0;
							width: 0;
						}
						.checkmark {
							position: relative;
							height: 12px;
							width: 12px;
							left: 10px;
							background-color: transparent;
							border: 1px solid var(--white);
							cursor: pointer;
							
						}
						
						.product-list-filter .container:hover input ~ .checkmark {
							background-color: var(--white);
						}
						
						.product-list-filter .container  input:checked ~ .checkmark {
							background-color: var(--white);
						}
						
						.checkmark:after {
							content: "";
							position: absolute;
							display: none;
						}
						
						.product-list-filter .container  input:checked ~ .checkmark:after {
							display: block;
						}
						
						.product-list-filter .container  .checkmark:after {
							left: 3px;
							top: 0;
							width: 4px;
							height: 9px;
							border: solid var(--primary);
							border-width: 0 3px 3px 0;
							-webkit-transform: rotate(45deg);
							-ms-transform: rotate(45deg);
							transform: rotate(45deg);
						}