@charset "UTF-8";

*
{
	margin: 0;
    padding: 0;
	box-sizing: border-box;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: 1.8em;
	font-family: 'Nunito Sans', sans-serif;
}

html
	{
		min-height: 100%;
	}

	html , body
		{
			color: var(--base-text-color);
			background-color: var(--base-background-color);
			height: 100%;
			font-weight: 400;
			font-size: var(--base-text-font-size);
		}

div.container
{
	display: block;
	max-width: 1240px;
	margin: 0px auto;
	padding: 0px 20px;
}

h1, h2, h3
{
	font-weight: 900;
	color: var(--header-text-color);
}

h1
{
	display: block;
	font-size: var(--h1-text-font-size);
}

h2
{
	display: block;
	font-size: var(--h2-text-font-size);	
}

h3
{
	display: block;
	font-size: var(--h3-text-font-size);
}

#language_container
{
	display: block;
	height: 56px;
	padding-top: 16px;
	background-color: var(--header-background-color);
}

	#language_container > .container > a
	{
		display: inline-block;
		width: 40px;
		height: 40px;
		float: right;
		line-height: 40px;
		font-size: 10pt;
		border-radius: 20px;
		text-align: center;
		margin-right: 10px;
		cursor: pointer;
		font-weight: bold;
		text-decoration: none;
		border: 3px solid var(--field-border-color);
	}
	
	#language_container > .container > a:hover
	{
		background-color: var(--theme-color);
		color: var(--light-text-color);
	}
		
#header
{
	height: var(--header-height-size);
	background-color: var(--header-background-color);
}

	#header > .container
	{
		height: var(--header-height-size); 
	}

		#header > .container a.logo-container
		{
			height: var(--header-height-size); 
			display: block;
			padding: 20px 0px;
			float: left;
		}

		#header > .container img.logo
		{
			height: 100%;
			display: block;
		}
				
	#header nav
		{
			display: block;
			height: var(--header-height-size); 
			float: right;
		}
		
			#header nav > ul
			{
				display: block;
				list-style: none;
				margin: 0px auto;
			}

				#header nav > ul > li
				{
					height: var(--header-height-size); 
					padding: 0px;
					float:left;
				}
				
				#header nav > ul > li > a
				{
					font-size: var(--menuitem-text-font-size);
					display: block;
					height:var(--header-height-size); 
					line-height: var(--header-height-size); 
					font-weight: 700;
					color: var(--menuitem-text-color);
					text-decoration: none;
					text-transform: uppercase;
					padding: 0px 15px;
				}
				
				#header nav > ul > li > a:hover
				{
					color: var(--menuitem-text-highlight-color);
				}
				
#menu_button
	{
		display: none;
		position: absolute;
		right: 30px;
		top: 80px;
		height: 40px;
		width: 40px;
		background: var(--theme-color);
		font-weight: 700;
		color: var(--light-text-color);
		text-decoration: none;
		text-transform: uppercase;
		font-size: 11pt;
		background-repeat: no-repeat;
		background-position: center center;
		border-radius: 20px;
		z-index: 100;
	}
	
body > section
{
	padding: 40px 0px;
	width: 100%;
	display: block;
}

body > section.header.index
{
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	height: 70vh;
}

	body > section.header.index .header-container
	{
		position: absolute;
		left: 0;
		top: 50%;
		/*margin-top: -100px;*/
		padding: 10px 10px 10px 20px;
		width: 100%;
	}
	
	body > section.header.index .header-container h1
	{
		font-weight: 900;
		line-height: 1.3em;
		text-align: center;
		color: var(--light-text-color);
		text-transform: uppercase;
	}

	body > section.header.index .header-container p
	{
		width: 100%;
		max-width: 600px;
		padding: 5px;
		margin: 10px auto;
		background-color: #00000088;
		color: var(--light-text-color);
		font-weight: 300;
		text-align: center;
		font-size: 24px;
		line-height: 1.2em;
	}

body > section.theme
{
	background-color: var(--theme-color);
}

body > section.dark
{
	background-color: var(--section-dark-background-color);
}

body > section.grayed
{
	background-color: var(--section-light-background-color);
}

body > section.last 
{
	padding-bottom: 150px!important;
}

body > section.pageheader
{
	padding: 40px 0px 20px 0px;
}

body > section.pageheader + section
{
	padding: 0px 0px 40px 0px;
}

body > section.kereso
{
	padding: 40px 0px!important;
	background-color: var(--section-light-background-color);
}

section#post-content .container p + p,
section#post-content .container h2 + p, 
section#post-content .container h3 + p,
section#post-content .container p + h3
{
	margin-top: 20px;
}

form label
{
	font-size: var(--base-smalltext-font-size);
	font-weight: 700; 
	line-height: 1.1em;
}

form input[type="text"],
form textarea,
form select
{
	font-weight: 700; 
	background-color: var(--field-background-color);
	color: var(--field-text-color);
	border: 3px solid var(--field-border-color);
	margin: 5px 0px;
	height: 40px;
	padding: 0px 5px;
	width: 100%;
	outline: none;
	
} 

form textarea
{
	height: 100px;
	min-height: 100px;
	resize: vertical;
}

form input[type="text"]:focus,
form textarea:focus,
form select:focus
{
	border-color: var(--theme-color);
}

button
{
	padding: 5px 20px;
	border-radius: 0px;
	border: none;
	background-color: var(--theme-color);
	color: var(--light-text-color);
	font-weight: 700;
	cursor: pointer;
}

button:hover
{
	background-color: var(--theme-color-light);
}

strong
{
	font-weight: 700;
}

#kapcsolat-urlap 
{
	display: block;
	width: 100%;
	max-width: 350px;
}

#kapcsolat-urlap img.captcha
{
	float:left;
	margin-bottom: 10px;
	display: block;
	margin-top: 30px;
}

#kapcsolat-urlap input[name="secureCode"]
{
	width: 120px;
	float:left;
	margin-left:10px;
	margin-bottom: 10px;
	margin-top: 30px;
}

#messagebox-modal-background
{
	display:block;
	background-color: #000000e0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

	#messagebox-modal-background > div
	{
		display:block;
		background-color: #ffffff;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 300px;
		height: 200px;
		margin-top: -100px;
		margin-left: -150px;
		border: 10px solid #999999;
		padding: 30px 10px;
	}
	
		#messagebox-modal-background > div p
		{
			text-align: center;
			font-weight: 700;
			font-size: var(--base-smalltext-font-size);
		}
		
		#messagebox-modal-background > div button
		{
			display: block;
			margin: 40px auto 10px auto;
		}

#footer
{
	display: block;
	background: var(--footer-background-color);
	padding: 40px 0px;
	color: var(--footer-text-color);
}

	#footer div.container:nth-child(1) > div
	{
		padding: 0px 20px 40px 20px;
	}
		
		#footer div.container:nth-child(1) a.logo
		{
			height: 200px;
			width: 200px;
			display: block;
			border-radius: 100px;
			background: var(--footer-background-secondary-color);
			padding-top: 80px;
			margin-top: -140px;
			position: relative;
		}
		
			#footer div.container:nth-child(1) a.logo img
			{
				display:block;
				margin: 0px auto;
				width: 120px;
				position: absolute;
				top: 40px;
				left: 40px;
			}
			
		#footer div.container:nth-child(1) div ul
		{
			list-style: none;
		}
		
			#footer div.container:nth-child(1) div ul li
			{
				line-height: 1.3em;
				padding: 6px 0px;
			}

				#footer div.container:nth-child(1) div ul li a
				{
					line-height: 1.3em;
					font-weight: 400;
					font-size: 12pt;
					text-decoration: none;
				}
				
				#footer div.container:nth-child(1) div ul li a:hover
				{
					text-decoration: underline;
				}
				
	#footer h1, #footer h2, #footer h3
	{
		color: var(--footer-header-text-color);
	}
	
	#footer .footer-title
	{
		font-weight: 700;
		margin-top: 40px;
	}
	
	#footer .footer-addr
	{
		font-weight: 400;
		margin-top: 30px;
		font-size: 15px;
	}
	
	#footer .container:nth-child(1) > div
	{
		max-width: 400px;
	}

	#footer div.container:nth-child(1) div .decoline-container > hr:nth-child(2)
	{
		height: 0px;
		border: 0;
		border-top: 1px solid var(--decoline-footer-thin-color);
		position: absolute;
		left: 50px;
		width: calc( 90% - 50px );
	}
	
	#footer p.copyinfo
	{
		padding: 20px 20px 10px 20px;
		font-size: 10pt;
		text-align: center;
	}


.decoline-container
{
	padding: 15px 0px 30px 0px;
	position: relative;
}

	.decoline-container > hr:nth-child(1)
	{
		height: 0px;
		border: 0;
		border-top: 3px solid var(--theme-color);
		position: absolute;
		left: 0;
		width: 50px;
	}

	.decoline-container > hr:nth-child(2)
	{
		height: 0px;
		border: 0;
		border-top: 1px solid var(--decoline-thin-color);
		position: absolute;
		left: 50px;
		width: 40%;
	}
	
	body > section.pageheader .decoline-container > hr:nth-child(2)
	{
		border-top: 1px solid var(--decoline-pageheader-thin-color);
	}

section#post-content .meta-hirdetesazonosito 
{
	font-size: var(--base-smalltext-font-size);
}

	section#post-content .meta-hirdetesazonosito > span
	{
		font-weight: 900;
	}

section#ingatlan-tulajdonsagai > div.container:nth-child(2) > div
{
	padding: 20px 20px 60px 110px;
	background-repeat: no-repeat;
	background-position: 50px 30px;
	background-size: 32px;
	background-color: var(--menuitem-background-highlight-color);
	clip-path: polygon(40px 0, 100% 0, 100% 100%, 0 100%);
	border-left: 10px solid var(--theme-color);
}

section#ingatlan-tulajdonsagai p.meta-header
{
	font-weight: 400;
}

section#ingatlan-tulajdonsagai p.meta-value
{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2em;
}

section#post-kepgaleria > div.container:nth-child(2) > a
{
	display: block;
	float: left;
	width: var(--imagegallery-item-size);
	height: var(--imagegallery-item-size);
	margin-right: 10px;
	margin-bottom: 10px;
}

	section#post-kepgaleria > div.container:nth-child(2) > a > img
	{
		display: block;
		width: var(--imagegallery-item-size);
		height: var(--imagegallery-item-size);
		object-fit: cover;
		object-position: center center;
	}
	
@media only screen and (max-width: 399px)
{
	section#post-kepgaleria > div.container:nth-child(2) > a 
	{
		width: 100%;
		height: auto;
		margin-bottom: 0px;
	}
	
	section#post-kepgaleria > div.container:nth-child(2) > a > img 
	{
		width: 100%;
		height: auto;
	}
}

section#ingatlan-header
{
	padding-top: 0px;
}

	section#ingatlan-header > div.container > div
	{
		border-top: 1px solid var(--theme-color);
	}

	section#ingatlan-header p.meta-price
	{
		text-align: right;
		font-size: 36pt;
		color: var(--light-text-color);
		float: right;
		font-weight: 700;
		letter-spacing: -1px;
		background-color: var(--theme-color);
		padding: 0px 30px 0px 40px;
		clip-path: polygon(0 0, 100% 0, 100% 100%, 20px 100%);
	}
	
@media only screen and (max-width: 669px)
{
	section#ingatlan-header p.meta-price
	{
		font-size: 6.3vw;
	}
}

figure.business-photo > img
{
	display: block;
	margin: 0px auto;
	width: 250px;
	border-radius: 125px;
	height: 250px;
	object-fit: cover;
	object-position: center top;
}

figure.business-photo > figcaption
{
	text-align: center;
	margin-top: 20px;
	line-height: 1.1em;
}

a.contact-info
{
	display: block;
	margin: 20px auto;
	width: 100%;
	text-decoration: none;
}

a.contact-info > img
{
	display: block;
	margin: 0px auto;
	opacity: 0.5;
	transition: .4s ease-in-out;
}

a.contact-info:hover > img
{
	opacity: 1;
}

a.contact-info > p
{
	margin: 20px auto;
	text-align: center;
	font-size: var(--base-smalltext-font-size);
	font-weight: 700;
}

sup
{
	font-size: 60%;
}

#top-info-section
{
	padding: 10px 0px;
	color:  var(--light-text-color);
}

#top-info-section .business-photo > img
{
	display: block;
	width: 60px;
	border-radius: 40px;
	height: 60px;
	object-fit: cover;
	object-position: center top;
	float: left;
}

#top-info-section .business-photo > a
{
	float: left;
	margin-top: 7px;
	margin-left: 20px;
	line-height: 20px;
	font-size: 21pt;
	font-weight: 300;
	text-decoration: none;
	white-space: nowrap;
}

	#top-info-section .business-photo > a > span
	{
		font-size: var(--base-smalltext-font-size);
		font-weight: 700;
	}


#top-info-section a.tel
{
	float: right;
	white-space: nowrap;
	text-align: left;
	margin-top: 7px;
	margin-left: 20px;
	line-height: 50px;
	font-size: 21pt;
	font-weight: 700;
	background-repeat: no-repeat;
	background-position: 0 center;
	background-size: 32px;
	padding-left: 50px;
	text-decoration: none;
}

@media only screen and (max-width: 639px)
{
	#top-info-section a.tel
	{
		width: 100%;
		margin-left: 80px;
	}
}

@media only screen and (max-width: 379px)
{
	
	#top-info-section a.tel
	{
		width: 100%;
		margin-left: 0px;
	}
}

@media only screen and (max-width: 339px)
{
	#top-info-section .business-photo > a
	{
		width: 100%;
		margin-top: 20px;
		margin-left: 0px;
	}
	
	#top-info-section a.tel
	{
		width: 100%;
		margin-left: 0px;
	}
}

.pl_10 	{ padding-left: 10px; }
.pl_20 	{ padding-left: 20px; }
.pl_30 	{ padding-left: 30px; }
.pl_40 	{ padding-left: 40px; }
.pl_50 	{ padding-left: 50px; }
.pl_60 	{ padding-left: 60px; }
.pl_70 	{ padding-left: 70px; }
.pl_80 	{ padding-left: 80px; }
.pl_90 	{ padding-left: 90px; }
.pl_100 { padding-left: 100px; }

.pt_0 	{ padding-top: 0px!important; }
.pt_5 	{ padding-top: 5px; }
.pt_10 	{ padding-top: 10px; }
.pt_20 	{ padding-top: 20px; }
.pt_30 	{ padding-top: 30px; }
.pt_40 	{ padding-top: 40px!important; }
.pt_50 	{ padding-top: 50px; }
.pt_60 	{ padding-top: 60px; }
.pt_70 	{ padding-top: 70px; }
.pt_80 	{ padding-top: 80px; }
.pt_90 	{ padding-top: 90px; }
.pt_100 { padding-top: 100px; }

.pr_10 	{ padding-right: 10px; }
.pr_20 	{ padding-right: 20px; }
.pr_30 	{ padding-right: 30px; }
.pr_40 	{ padding-right: 40px; }
.pr_50 	{ padding-right: 50px; }
.pr_60 	{ padding-right: 60px; }
.pr_70 	{ padding-right: 70px; }
.pr_80 	{ padding-right: 80px; }
.pr_90 	{ padding-right: 90px; }
.pr_100 { padding-right: 100px; }

.pb_10 	{ padding-bottom: 10px; }
.pb_20 	{ padding-bottom: 20px; }
.pb_30 	{ padding-bottom: 30px; }
.pb_40 	{ padding-bottom: 40px; }
.pb_50 	{ padding-bottom: 50px; }
.pb_60 	{ padding-bottom: 60px; }
.pb_70 	{ padding-bottom: 70px; }
.pb_80 	{ padding-bottom: 80px; }
.pb_90 	{ padding-bottom: 90px; }
.pb_100 { padding-bottom: 100px; }

.nopad { padding: 0px!important; }

.clearfix 
{
	display: block;
}

.clearfix::after 
{
	content: "\00A0";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

.text-center
{
	text-align: center;
}

.flex
{
	display: flex!important;
	flex-wrap: wrap;
	gap: 20px;
	align-content: stretch;
	padding-bottom: 40px!important;
}

.container.flex
{
	margin-top: 30px;
}

.flex.nogap
{
	gap: 0px;
}


.flex.col-2 > *
{
	width: calc( 50% - 25px ); /* gap * 1 / 2 */
	display: block;
}

.flex.nogap.col-2 > *
{
	width: 50%;
}

.flex.col-3 > *
{
	width: calc( 33.33333% - 15px ); /* gap * 2 / 3 */
	display: block;
}
.flex.nogap.col-3 > *
{
	width: 33.33333%;
}

.flex.col-4 > *
{
	width: calc( 25% - 38px ); /* gap * 3 / 4 */
	display: block;
}
.flex.nogap.col-4 > *
{
	width: 25%;
}

/* COL-3 SIZING */

@media only screen and (max-width: 819px)
{
	.flex.col-3 > *,
	.flex.nogap.col-3 > *
	{
		width: calc( 50% - 10px );
	}
	
}

@media only screen and (max-width: 539px)
{
	.flex.col-3 > *,
	.flex.nogap.col-3 > *
	{
		width: 100%;
	}
	
}

/* MENU MOBILE VIEW */
@media only screen and (max-width: 679px)
{
	
	#header nav
	{
		display: none;
		clear: left!important;
		width: 100%;
		background: #22293388;
		margin-right: 0px;
		padding: 0px;
		position: fixed;
		top: calc( var(--header-height-size) + 56px );
		left: 0;
		z-index: 20;
		height: calc( 100% - var(--header-height-size) );
	}
	
		#header nav::before
		{
			clear: both!important;
			display:block;
		}
	
		#header nav > ul
		{
			position: fixed;
			top: calc( var(--header-height-size) + 56px );
			padding: 20px 0px 40px 0px;
			width: calc( 100% - 70px );
			max-width: 350px;
			background: var(--mobile-navigation-background-color);
			height: calc( 100% - var(--header-height-size) );
			overflow-y: auto;
		}
		
		#header nav > ul > li
		{
			padding: 0px;
			clear: both!important;
			display:block;
			height: auto;
		}
		
			#header nav > ul > li > a
			{
				font-size: 11pt;
				display: block;
				width: 100%;
				line-height: 1.1em;
				font-weight: 700;
				color: var(--light-text-color);
				text-decoration: none;
				text-transform: uppercase;
				border: none;
				padding: 17px 20px;
				height: auto;
			}
						
			#header nav > ul > li > a:hover
			{
				color: var(--menuitem-text-highlight-color);
			}
			
			#header nav > ul > li > ul
			{
				display: block;
				position: static;
				border: none;
				box-shadow: none;
				background: none;
				width: auto;
			}
		
	#menu_button
	{
		display: block;
	}
	
}

@media only screen and (min-width: 680px)
{
	#header nav
	{
		display: block!important;
	}
	
	body
	{
		overflow-y: auto!important;
	}
	
}

/***************************
ESTATE ITEM
***************************/

.estate-item
{
	float: left;
	width: 100%;
	position: relative;
	overflow: hidden;
	margin-top: 5px;
	margin-bottom: 5px;
	height: 300px;
	color: var(--theme-color-light);
}

	.estate-item > img
	{
		position: relative;
		width: 100%;
		height: 300px;
		object-fit: cover;
		object-position: center center;
	}
	
	.estate-item > .header-container
	{
		position: absolute;
		left: 0;
		width: 100%;
		top: calc(100% - 80px);
		height: 100%;
		background-color: var(--hover-background-highlight-color);
		padding: 10px;
		transition: .4s ease-in-out;
	}
	
	.estate-item:hover > .header-container
	{
		top: 0;
	}
	
		.estate-item > .header-container > h3
		{
			line-height: 1.3em;
			clear: none!important;
			font-weight: 300;
			color: var(--theme-color-light);
		}
		
		.estate-item > .header-container > .meta-place
		{
			font-weight: 700;
		}

		.estate-item > .header-container > .meta-excerpt
		{
			margin-top: 30px;
			line-height: 1.3em;
			font-size: var(--base-smalltext-font-size);
		}
		
		.estate-item > .header-container > .meta-price
		{
			font-weight: 700;
		}