<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@-webkit-viewport{width:device-width}
@-moz-viewport{width:device-width}
@-ms-viewport{width:device-width}
@-o-viewport{width:device-width}
@viewport{width:device-width}

:root {
	--kek1: #1f7fcd;
	--kek2: #008CCA;
	--kek2hover: #00A4E1;
	--szurke1: #f2f2f2;
	--szurke2: #595757;
	--szurke3: #d6d6d6;
	--szurke4: #727272;
}

* {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-tap-highlight-color: transparent;
	outline: none;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

input {
	-webkit-appearance: none !important;
	-moz-appearance: none !important;
	appearance: none !important;
	-webkit-border-radius: 0;
	border-radius: 0;
}

select::-ms-expand {
    display: none;
}

select {
    -webkit-appearance: none;
    -moz-appearance: none;
    text-indent: 1px;
    text-overflow: '';
}

html {
	background-color: #ffffff;
	max-width: 100% !important;
	overflow-x: hidden !important;
}

.bodys {
    padding: 0px;
    margin: 0px;
    background: #ffffff;
    /*overflow-x: hidden !important;*/
    max-width: 100% !important;
    /*font-size: 0px;*/
    font-family: "Muli";
    font-weight: 400;
}

.body_noscroll {
	overflow: hidden;
}

p {
	padding: 0px 0px 15px 0px;
	margin: 0px;
	font-size: 16px;		
	text-align: justify;
	color: var(--szurke2);
	font-weight: 300;
	line-height: 26px;
}

p A {
	color: var(--kek2);
	text-decoration: none;
}

p A:hover {
	color: var(--kek2hover);
}

.link {
	font-weight: 500;
	color: var(--kek2);
	text-decoration: none;
}

.link:hover, .link:active {
	color: var(--kek2hover);
}

h2 {
	padding: 0px 0px 15px 0px;
	margin: 0px;
	text-align: left;
	color: #ffffff;
	font-weight: 800;
	text-align: center;
	text-transform: uppercase;
}

h3 {
	padding: 0px 0px 15px 0px;
	margin: 0px;
	text-align: left;
	color: #000000;
	font-weight: 600;
	text-align: left;
	text-transform: uppercase;
}

h4 {
	padding: 0px 0px 15px 0px;
	margin: 0px;
	text-align: left;
	color: #000000;
	font-weight: 600;
	text-align: left;
	text-transform: uppercase;
}

.padt1x {
	padding-top: 15px;
}

.padt2x {
	padding-top: 30px;
}

.padt3x {
	padding-top: 45px;
}

.padb1x {
	padding-bottom: 15px;
}

.padb2x {
	padding-bottom: 30px;
}

.padb3x {
	padding-bottom: 45px;
}

.padl1x {
	padding-left: 15px;
}

.padl2x {
	padding-left: 30px;
}

.padl3x {
	padding-left: 45px;
}

.padr1x {
	padding-right: 15px;
}

.padr2x {
	padding-right: 30px;
}

.padr3x {
	padding-right: 45px;
}

.cell {
	display: flex;
	flex-wrap: wrap;
}

.felfele_nyil {
	background-color: var(--kek2);
	width: 40px;
	height: 40px;
	position: fixed;
	right: 20px;
	bottom: 10px;
	cursor: pointer;
	display: none;
	z-index: 5;
	-webkit-border-radius: 100px;
	border-radius: 100px;	
}

.felfele_nyil:after {
	font-family: "FontAwesome";
	color: #FFFFFF;
	line-height: 40px;
	width: 40px;
	height: 40px;
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 22px;
	content: '\f106';
	text-align: center;
}

.felfele_nyil:hover, .felfele_nyil:active {
	background-color: var(--kek2hover);
}

.please_wait {
	position: fixed;
	z-index: 15;
	left: calc(50% - 80px);
	top: calc(50% - 12px);
	display: none;
}

/*	--------------------------------------------------------------------------- 
	URLAP
/*	--------------------------------------------------------------------------- */

label {
	display: inline-block;
	position: relative;
}

.textf &gt; input, textarea, .sel &gt; select {
	font-family: "Muli";
    font-weight: 400;
    font-size: 16px;
    color: var(--szurke2);
    text-align: left;
    background-color: #ffffff;
    border: 1px solid var(--szurke3);
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
	width: 100%;
	padding: 30px 15px 15px 15px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;	
}

.textf &gt; input + span, textarea + span, .sel &gt; select + span {
	width: 100%;
	background-color: var(--kek1);
	height: 4px;
	bottom: 0px;
	left: 0px;
	transform-origin: center center;
	-webkit-transform-origin: center center;
	-ms-transform-origin: center center;
	-moz-transform-origin: center center;
	-o-transform-origin: center center;
	-moz-transform: scale(0, 1);
	-webkit-transform: scale(0, 1);
	-o-transform: scale(0, 1);
	-ms-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	position: absolute;
	display: block;
}

.textf &gt; input:focus, textarea:focus, .sel &gt; select:focus {
	background-color: var(--szurke1);
}

.textf &gt; input:focus + span, textarea:focus + span, .sel &gt; select:focus + span {
	-moz-transform: scale(1, 1);
	-webkit-transform: scale(1, 1);
	-o-transform: scale(1, 1);
	-ms-transform: scale(1, 1);
	transform: scale(1, 1);	
}

.textf &gt; span:nth-of-type(1), .sel &gt; span:nth-of-type(1) {
	z-index: 2;
	position: absolute;
	left: 15px;
	top: 8px;
	font-size: 12px;
	color: #000000;
	font-weight: 400;
}

.sel &gt; select {
	position: relative;
	padding-right: 45px;
}

.sel::after {
	content: '\f107';
	font-family: "FontAwesome";
	font-size: 21px;
	color: var(--szurke2);
	position: absolute;
	right: 15px;
	bottom: 14px;
	pointer-events: none;
}

@keyframes btn_anim {
	from {
		-moz-transform: scale(1);
		-webkit-transform: scale(1);
		-o-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);	
		opacity: 1;
	}
	to {
		-moz-transform: scale(1.2, 1.5);
		-webkit-transform: scale(1.2, 1.5);
		-o-transform: scale(1.2, 1.5);
		-ms-transform: scale(1.2, 1.5);
		transform: scale(1.2, 1.5);		
		opacity: 0;
	}
}

.btn &gt; input {
	font-family: "Muli";
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
	text-align: center;	
	background-color: var(--kek1);
	border: 0px;
	text-transform: uppercase;
	padding: 20px 35px 20px 35px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	-webkit-transition: all .2s ease-out;
	-moz-transition: all .2s ease-out;
	-ms-transition: all .2s ease-out;
	-o-transition: all .2s ease-out;
	transition: all .2s ease-out;	
	z-index: 2;
	position: relative;
}

.btn &gt; input:hover {
	background-color: var(--kek2hover);
}

.btn_anim &gt; input + span {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: var(--kek2hover);
	display: block;
	-webkit-border-radius: 5px;
	border-radius: 5px;	
	z-index: 1;
	animation-name: btn_anim;
	animation-duration: 1s;
	animation-iteration-count: infinite;
}

/*	--------------------------------------------------------------------------- 
	IKONOS GOMBOK
/*	--------------------------------------------------------------------------- */

.ikongomb {
	font-family: "Muli";
    font-weight: 400;
    font-size: 16px;
	color: #000000;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	padding: 10px 15px 10px 15px;
	border: 1px solid var(--szurke3);
	background-color: #ffffff;
	text-align: left;
	width: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-decoration: none;	
	text-transform: uppercase;
	display: flex;
	word-break: break-all;
	justify-content: flex-start;
	align-items: center;
}

.ikongomb i {
	font-size: 25px;
	color: var(--szurke2);
	padding-right: 10px;
}

.ikongomb:hover, .ikongomb:active {
	background-color: var(--szurke1);
}

.ikongomb img {
	width: auto;
	height: 25px;
	border: 0px;
	padding-right: 10px;
}

/*	--------------------------------------------------------------------------- 
	MODAL
/*	--------------------------------------------------------------------------- */

.modal_hatter {
	background-color: rgba(0,0,0,.6);
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 10;
	display: none;
}

.modal_scroll {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 11;
	overflow-y: scroll;
	display: none;
}

.modal_ablak {
	margin: 50px auto 50px auto;
	background-color: #ffffff;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: 2px solid var(--kek1);
	position: relative;
}

.modal_ablak a[href=modal-bezar] {
	font-size: 15px;
	background-color: var(--kek2);
	color: #ffffff;
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
}

.modal_ablak a[href=modal-bezar]:hover {
	background-color: var(--kek2hover);
}

/*	--------------------------------------------------------------------------- 
	FEJLEC 
/*	--------------------------------------------------------------------------- */

.fejlec_csik {
    background-color: var(--kek1);
    border-bottom: 2px solid #FFFFFF;
    width: 100%;
	height: 25px;
	font-size: 13px;
	color: #ffffff;
	font-weight: 400;
}

.fejlec_csik A {
	color: #ffffff;
	text-decoration: none;
	line-height: 25px;
}

.fejlec_csik A:hover {
	color: #ffffff;
	text-decoration: underline;
}

.fejlec_logo {
	display: block;
	display: flex;
	align-items: flex-start;
}

.fejlec_logo img:nth-of-type(1) {
	width: auto;
	height: 115px;
	border: 0px;
	margin-top: -25px;
}

.fejlec_logo img:nth-of-type(2) {
	width: auto;
	height: 105px;
	border: 0px;
	margin-top: -20px;	
	padding-left: 10px;
}

.fejlec_gomb {
    display: block;
    padding: 0px 15px 0px 15px;
    background-color: var(--kek2);
	display: flex;
	align-items: center;
	position: relative;
	text-decoration: none;
	overflow: hidden;
    font-weight: 400;
	text-transform: uppercase;	
	height: 45px;
	flex-wrap: nowrap;
	flex-shrink: 0;
	-webkit-border-radius: 5px;
	border-radius: 5px;	
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;		
}

.fejlec_gomb img {
	width: auto;
	height: 25px;
	border: 0px;
	padding-right: 10px;
	z-index: 2;
	position: relative;
	opacity: 1;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
	transition: all .1s ease-out;	
}

.fejlec_gomb span:nth-of-type(1) {
	position: absolute;
	display: block;
	background-color: var(--szurke1);
	width: calc(100% - 4px);
	height: calc(100% - 4px);
	left: 2px;
	top: 140%;
	z-index: 1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
	transition: all .2s ease-out;
	-moz-transform: rotate(20deg);
	-webkit-transform: rotate(20deg);
	-o-transform: rotate(20deg);
	-ms-transform: rotate(20deg);
	transform: rotate(20deg);		
	font-size: 17px;
	color: var(--kek1);
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	-webkit-border-radius: 3px;
	border-radius: 3px;		
}

.fejlec_gomb span:nth-of-type(2) {
	z-index: 2;
    font-size: 14px;
	color: #ffffff;	
	opacity: 1;
    -webkit-transition: all .1s ease-out;
    -moz-transition: all .1s ease-out;
    -ms-transition: all .1s ease-out;
    -o-transition: all .1s ease-out;
	transition: all .1s ease-out;	
}

.fejlec_gomb:hover span:nth-of-type(1), .fejlec_gomb:active span:nth-of-type(1) {
	top: 2px;
	-moz-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	transform: rotate(0deg);	
	opacity: 1;
}

.fejlec_gomb:hover span:nth-of-type(2), .fejlec_gomb:active span:nth-of-type(2) {
	opacity: 0;
}

.fejlec_gomb span i {
	padding-left: 5px;
}

.fejlec_gomb:hover img, .fejlec_gomb:active img {
	opacity: 0;
}

.fejlec_gomb_inverz {
	background-color: var(--szurke1);
}

.fejlec_gomb_inverz span:nth-of-type(2) {
	color: var(--kek2);
}

.fejlec_gomb_inverz span:nth-of-type(1) {
	background-color: var(--kek2);
	color: #ffffff;
}

.fejlec_szlogen {
	text-transform: uppercase;	
	font-size: 17px;
	font-weight: 500;
	color: #000000;
	flex-grow: 1;
	padding-left: 20px;
}

/*	--------------------------------------------------------------------------- 
	FOMENU 
/*	--------------------------------------------------------------------------- */

.fomenu {
	background-color: var(--szurke2);
	border-bottom: 2px solid #ffffff;
}

/*	--------------------------------------------------------------------------- 
	GYORS
/*	--------------------------------------------------------------------------- */

.gyors_tab &gt; div {
	margin: auto;
}

.gyors_tab ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.gyors_tab ul li {
	padding: 0px;
	margin: 0px;
	font-size: 16px;
	font-weight: 600;
	line-height: 45px;
	text-transform: uppercase;
	overflow: hidden;
}

.gyors_tab ul li A {
	color: #000000;
	text-decoration: none;
	padding: 5px 25px 0px 25px;
	display: block;
	background-color: var(--szurke1);
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;
	position: relative;
	overflow: hidden;
}

.gyors_tab ul li A span {
	position: absolute;
	background-color: var(--kek1);
	width: 100%;
	height: 4px;
	left: 0px;
	top: 0px;
	-webkit-border-radius: 5px 5px 0 0;
	border-radius: 5px 5px 0 0;	
}

.gyors_tab ul li:nth-of-type(even) A span {
	background-color: var(--kek2hover);
}

.gyors_tartalom {
	background-color: var(--szurke1);
}

.gyors_tartalom &gt; div {
	margin: auto;
	background-color: #ffffff;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;	
}

.gyors_tab ul li A:hover, .gyors_tab ul li A:active {
	background-color: #ffffff;
}

.gyors_tab_valasztott {
}

.gyors_tab_valasztott A {
	color: var(--kek1) !important;
	background-color: #ffffff !important;
	border-bottom: 1px solid #ffffff !important;	
}

.gyors_tartalom &gt; div:nth-of-type(n+2) {
	display: none;
}

.gyors_tartalom form {
	display: flex;
	justify-content: center;
	align-items: center;
}

.gyors_tartalom ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.gyors_tartalom ul li {
	flex-grow: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;	
}

/*	--------------------------------------------------------------------------- 
	KEPESBLOKK
/*	--------------------------------------------------------------------------- */

.kepesblokk {
	margin: auto;
}

.kepesblokk &gt; div &gt; div {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;	
	background-color: var(--szurke1);
}

.kepesblokk a {
	display: block;
}

.kepesblokk img {
	width: 100%;
	height: auto;
	border: 0px;
	filter: brightness(100%) contrast(100%);
	webkit-filter: brightness(100%) contrast(100%);
	moz-filter: brightness(100%) contrast(100%);
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .2s ease-out;
    -ms-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;	
}

.kepesblokk img:hover, .kepesblokk img:active {
	filter: brightness(110%) contrast(110%);
	webkit-filter: brightness(110%) contrast(110%);
	moz-filter: brightness(110%) contrast(110%);
}

.tarifalo &gt; div &gt; div {
    background-color: #ffffff !important;
}
.tarifalo a {
    display:inline;
}
.tarifalo p {
    padding: 0 !important;
}
/*	--------------------------------------------------------------------------- 
	NYITO VIDEO
/*	--------------------------------------------------------------------------- */

.nyito_video {
	margin: auto;
}

/*	--------------------------------------------------------------------------- 
	GYIK
/*	---------------------------------------------------------------------------  */

.gyik {
	list-style: none;
	padding: 0px;
	margin: 0px;
}

.gyik &gt; li &gt; a {
	width: 100%;
	display: block;
	padding: 0px 0px 10px 0px;
	margin: 0px 0px 10px 0px;
	font-size: 16px;		
	text-align: left;
	color: #000000;
	font-weight: 600;
	border-bottom: 1px solid var(--szurke3);
	text-decoration: none;
	line-height: normal;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gyik_div {
	display: none;
}

.gyik &gt; li &gt; a &gt; span {
	width: 30px;
	height: 30px;
	border: 1px solid var(--kek1);
	-webkit-border-radius: 100px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.gyik &gt; li &gt; a &gt; span &gt; i {
	font-size: 20px;
	color: var(--kek1);
}

.gyik_kategoria {
	display: flex;
	justify-content: center;
}

/*	--------------------------------------------------------------------------- 
	LABLEC
/*	---------------------------------------------------------------------------  */

.lablec {
	display: flex;
	justify-content: center;
	vertical-align: middle;
	background-color: var(--kek1);
	padding-top: 30px;
	padding-bottom: 30px;
	flex-direction: column;
	margin-top: 50px;
}

.lablec &gt; div {
	margin: auto;
}

.lablec &gt; div &gt; p {
	color: var(--szurke1);
	text-align: center;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid var(--kek2);
	font-size: 14px;
}

.lablec &gt; div &gt; p:first-of-type {
	font-weight: 500;
	border-bottom: 0px;
	margin-bottom: 0px;
	padding-bottom: 20px;
	font-size: 18px;
	color: #ffffff;
}

.lablec &gt; div &gt; p:last-of-type {
	border-bottom: 0px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.lablec &gt; div &gt; h3 {
	color: #ffffff;
	text-align: center;
}

.lablec_logo {
	position: relative;
	border-top: 2px solid #ffffff;
	text-align: center;
}

.lablec_logo &gt; div:nth-of-type(1) {
	position: absolute;
	left: 0px;
	top: 0px;
	background-color: var(--szurke2);
	height: 40px;
	width: 100%;
	z-index: 1;
}

.lablec_logo img {
	width: 110px;
	height: auto;
	border: 0px;
	z-index: 2;
	position: relative;
	border-left: 2px solid #ffffff;
	border-right: 2px solid #ffffff;
}

.lablec_logo &gt; p {
	font-size: 14px;
}

.lablec_logo &gt; p A {
	color: var(--szurke2);
}

.lablec_logo &gt; p A:hover, .lablec_logo &gt; p A:active {
	text-decoration: underline;
}

.lablec_fizetesi_lehetoseg {
	padding-bottom: 20px;
}

.lablec_fizetesi_lehetoseg &gt; div {
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.lablec_fizetesi_lehetoseg img {
	width: 50px;
	height: auto;
	padding-left: 10px;
	border: 0px;
}

.lablec_fizetesi_lehetoseg p {
	font-size: 14px;
	padding: 0px;
	line-height: normal;
}

/*	--------------------------------------------------------------------------- 
	BALESET TORTENT
/*	---------------------------------------------------------------------------  */

.baleset_tortent {
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
}

.baleset_tortent h3 {
	width: 100%;
}

.baleset_tortent &gt; div:nth-of-type(1) {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;	
}

.baleset_tortent &gt; div:nth-of-type(2) {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

.baleset_tortent &gt; div:nth-of-type(1) &gt; ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
	display: flex;
	flex-direction: column;
}

.baleset_tortent &gt; div:nth-of-type(1) &gt; ul li {
	padding-bottom: 15px;
}

/*	--------------------------------------------------------------------------- 
	BEJELENTKEZES
/*	---------------------------------------------------------------------------  */

.bejelentkezes_modal {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.bejelentkezes_modal form {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	width: 100%;
}

.bejelentkezes_modal p:nth-of-type(1) {
	padding-top: 0px;
	padding-bottom: 20px;
}

.bejelentkezes_modal p:nth-of-type(2) {
	padding-top: 10px;
	padding-bottom: 0px;
}
.state-error {
    color: #DE888A !important;
}
state-success {
    color: var(--szurke2);
}

em {
    font-size: 16px;
    margin-bottom: 10px;
}


</pre></body></html>