body{
    font-family: Roboto,sans-serif;
    font-weight: 400;
	font-size: 18px;
    line-height: 26px;
    text-transform: none;
    color: #414b55;	
	overflow-x:hidden;
}

*:focus {
    outline: none;
}

table{
	width:100%;
	table-collapse:collapse;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Roboto,sans-serif;
}

h1{
	font-size: 2.8rem;
	line-height: 70px;
	font-weight: 300;
	letter-spacing: 0px;
	color: #292223;	
}

h2{
	font-size: 2rem;
	color: #292223;	
	font-weight: 600;
}

h3 {
    font-size: 26px;
    text-transform: none;
    letter-spacing: 0px;
    color: #555!important;
	font-weight:700;
}

h4 {
    font-size: 20px;
    line-height: 40px;
    text-transform: none;
    letter-spacing: 0px;
	color: #292223;	
	font-weight: 300;
	margin:0;
}

a{
	text-decoration: none;
	color: #a33344;
}

.color-gray{
	color:gray;
}

.color-green{
	color: #a6ce39;
}

.color-red{
	color: #a33344;
}

.container-fluid{
	max-width: 1600px !important;
}

.nowrap{
	white-space: nowrap;
}

.form-floating>label {
	left: 10px;
}

/*MENU*/

.menu-toggler {
	left: 20px;
	z-index: 999;
	height: 32px;
	width: 32px;
	outline: none;
	cursor: pointer;
	display: flex;
	align-items: center;
}
.menu-toggler span,
.menu-toggler span::before,
.menu-toggler span::after {
	position: absolute;
	content: '';
	width: 32px;
	height: 3px;
	background: #000;
	border-radius: 0px;
	transition: 500ms cubic-bezier(0.77, 0, 0.175, 1);
}
.menu-toggler span::before {
	top: -10px;
}
.menu-toggler span::after {
	top: 10px;
}
.menu-toggler.active > span {
	background: transparent;
}
.menu-toggler.active > span::before, .menu-toggler.active > span::after {
	background: #000;
	top: 0px;
}
.menu-toggler.active > span::before {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}
.menu-toggler.active > span::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}

.menu {
	position: absolute;
	display:none;
	top:0;
	left: 0;
	right:0;
	z-index: 1001;
	color: #000;
	background: rgba(250, 250, 250, 0.95);
	width:100%;
	padding-bottom:0px;
	overflow:auto;
	max-height:455px;
}

@media (min-width:1px) and (max-width:576px) {
	.menu{
		max-height:calc(100vh - 90px);
	}
}

@media (min-width:576px) and (max-width:998px) {
	.menu{
		max-height:60%;
	}
}

.menu p {
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

.menu ul {
	list-style: none;
	margin:0;
}

.menu li {
	margin-top: 10px;
}

.bg-green{
	background-color: rgba(174, 204, 83, 0.28);
}

.bg-highlight{
	background-color: rgb(193 228 227);
}

.small-text-cell {
  font-size: 12px;
}

@media only screen and (max-width: 600px) {
  .small-text-cell {
    font-size: 10px;
  }
}

/*KERESES*/

#searchfkey{
	width:100%;
		background:#f4f4f4 !important;
	border-radius: 2px;
	padding-left:10px;
	border:1px solid #81868833;
}


#searchfkey2{
	width:100%;
	background:#f4f4f4 !important;
	border-radius: 2px;
	padding-left:10px;
	border:1px solid #81868833;
}

@media screen and (min-width: 1888px) {
	#searchfkey{
		width:32vw;
	}
}

@media (min-width:1210px) and (max-width:1300px) {
    #searchfkey{
		width:35vw;
	}
}

@media (min-width:991px) and (max-width:1209px) {
	#searchfkey{
		width:27vw;
	}
}

#search {
	position: absolute;
	display:none;
	top:0;
	left: 0;
	right:0;
	z-index: 1002;
	color: #000;
	background: white;
	width:100%;
	padding-top: 19px;
	-webkit-box-shadow: 0px 5px 13px -3px #0000004f; 
	box-shadow: 0px 5px 13px -3px #0000004f;
}

#search p {
	font-size: 1.4rem;
	margin-bottom: 1rem;
}

#searchkey{
	width: calc(100% - 100px);
}

/*HEADER*/

#header{
	transition: all .6s ease 0s;
}

#header input[type='text']{
	height:40px;
	background: transparent;
}

#header i{
	cursor: pointer;
}

#header a{
	color: #818688;
}

#header a span{
	color: #818688;
}

.head-btn{
		transition: all .6s ease 0s;
	border-radius: 2px;
	padding:0 10px;
	border:1px solid #81868833;
}

.head-btn:hover{
	background: #81868833;	
}	

/*BUTTON*/

.button {
	box-sizing: border-box;
	-webkit-appearance: none;
	 -moz-appearance: none;
		  appearance: none;
	background-color: #a33344;
	border-radius: 5px;
	color: #fff !important;
	cursor: pointer;
	/*display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;*/
	-webkit-align-self: center;
	  -ms-flex-item-align: center;
		  align-self: center;
	justify-content: center;	  
	font-size: 13px;
	font-weight: 400;

	padding: 8px 20px;
	text-decoration: none;
	text-align: center;
	position: relative;
	overflow: hidden;
	
	-webkit-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;	
}

.button:hover, .button:focus {
	color: #fff !important;
	outline: 0;
}

.button.active{
	background: #69121f  !important;
}

.button:hover{
	background: #69121f  !important;
}

.button-effect {
	border-radius: 5px !important;
	color: #fff !important;
	position: relative;
	overflow: hidden;
	z-index: 1;
	-webkit-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}
.button-effect:after {
	content: '';
	position: absolute;
	display: block;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
		  transform: translateX(-50%);
	width: 0;
	height: 100%;
	/*border-radius:100%;*/
	background: #69121f  !important;
	z-index: -1;
	-webkit-transition: all 150ms ease-in-out;
	transition: all 150ms ease-in-out;
}
.button-effect:hover {
	color: #fff !important;
}
.button-effect:hover:after {
	width: 110%;
}

button{
	border: 0;
}

.button.inv {
	background-color: #ffffff !important;
	color: #a33344 !important;
	border: 1px solid #a33344 !important;
}
/***/

.btn-decrement{
	border-top-left-radius: 5px !important;
	border-top-right-radius: 0 !important;
	border-bottom-left-radius: 5px !important;
    border-bottom-right-radius: 0 !important;
    border-right: 0 !important;
} 

.btn-increment{
	border-top-left-radius: 0 !important;
	border-top-right-radius: 5px !important;
	border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 5px !important;
	border-left: 0 !important;
} 

.btn-decrement:hover{
	background: #fff  !important;
	color: #69121f  !important;
}

.btn-increment:hover{
	background: #fff  !important;
	color: #69121f  !important;
}

.input-group-lg input{
	border-top: 1px solid #6c757d !important;
	border-bottom: 1px solid #6c757d !important;
	border-left: 0 !important;
	border-right: 0 !important;
    background: transparent;	
}

/**/
.button.dark{
	background-color:gray;
}

.button.small{
	padding: 6px 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;	
	font-size:14px!important;
}
.button.large{
	padding: 10px 25px;
	font-size:18px!important;
}

.owl-carousel .button{
	padding: 6px 10px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;	
	font-size:14px!important;
	width: fit-content;
}

/**/

.fab{
	color:#3a95c5;
}

/*COMMON*/

.text-flex-center{
	justify-content: center;	
}

a.ul:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background-color: #96c41a;
	visibility: hidden;
	transform: scaleX(0);
	transition: all 0.3s ease-in-out 0s;
}

#footer, #newsletter, #socials{
	background: #818688;
	color:white;
}

#footer{
	border-top:1px solid white;
}

#footer a{
	color: white;
}
#footer a:hover{
	color: lightgray;
}


#newsletter{
	background: #a33344;
	border-top:1px solid gray;
	border-bottom:1px solid gray;s
	font-size:1rem;
}

#newsletter .button{
	background: #69121f;
}

#newsletter .button:hover{
	background: rgba(174, 204, 83, 0.28);
	
}

#newsletter input{
	border-radius:24px;
}

#newsletter a{
	color: white;
}

#newsletter .title{
	font-size: 1.2rem;
}


#socials a{
	color: #a33344;
}

#socials .slogen{
	color:white !important;
	font-size:1.2rem;
}


#footer ul{
	list-style: none;
	padding:0;
	margin:0;
}

#footer li{
	color: white;
	padding:0;
	margin:0;	
}

#footer li a{
	color: white;
	padding:0;
	margin:0;	
}

.back-to-top {
    position: fixed;
    display: none;
    background: linear-gradient(45deg, #69121f, #69121f);
    color: #fff;
    padding: 8px 20px 8px 20px;
    font-size: 16px;
    border-radius: 4px 0 0 4px;
    right: 0px;
    bottom: 135px;
    transition: none;
	z-index:10;
}

.back-to-top:hover {
	color: white;
}

.wrap-sm{
	margin-left:36%;
}

@media only screen and (max-width: 576px) {
	.wrap-sm{
		width: -moz-fit-content;
		width: -webkit-fit-content;
		width: fit-content;
		margin: auto; 
	}
}

/******/

img{
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    transition: all .25s ease;	
	z-index:2000;
}


#top-info{
	height: 28px;
	background: #efefef;
	color: #a33344;
	border-bottom:1px solid rgba(221,221,221,0.54);
}

#top-info a{
	color:#a33344;
}

#bottom-info{
	height: fit-content;
	background: #a4acb0;
	color: #fff;
	/*padding-top: 8px;*/
	border-bottom:1px solid #a4acb0;
}

#bottom-info a{
	color:#fff;
}

#bottom-info .navbar2-nav{
	 list-style-type: none;
}

#bottom-info .nav-item{
	float:left;
	padding:10px 0;
	margin-right:10px;
	font-size:18px;
}

#bottom-info .nav-item.active{
	background:#424242;
}

#bottom-info .nav-item:hover{
	background:#424242;
}

.breadcrumb{
	background-color:transparent;
}

/**/


#ex1, #ex2, #ex3, #ex4{
    display: inline-block;
}

/* on ex2 if you include bootstrap v3 css the number is a rounded circle with the .has-badge class */
.has-badge {
  position: relative;
}

.badge-number {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #a33344;
  color: white !important;
  font-size: 12px;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  font-weight: bold;
}
.badge-number.bump {
  transform: scale(1.3);
}

.fa-stack {
    height: 36px;
	width: auto;
}

/**/

.nav-tabs .active{
	border-top-color: #c3c4c6;
    border-top-style: solid;
    border-top-width: 1px;
    border-right-color: #c3c4c6;
    border-right-style: solid;
    border-right-width: 1px;
    border-left-color: #c3c4c6;
    border-left-style: solid;
    border-left-width: 1px;
    border-image-source: initial;
    border-image-slice: initial;
    border-image-width: initial;
    border-image-outset: initial;
    border-image-repeat: initial;
}

/**/

@media all and (min-width: 992px) {
	.navbar .nav-item .dropdown-menu{ display: none; }
	.navbar .nav-item:hover .nav-link{ color: #fff;  }
	.navbar .nav-item:hover .dropdown-menu{ display: block; }
	.navbar .nav-item .dropdown-menu{ margin-top:0; }
	
	.dropdown-menu{min-width:300px;}
}

.dropdown-menu .nav-item .nav-link{padding-left:20px!important;}

.pos-abs{
	position:fixed !important;
    top: -500px;
    right: 0;
    left: 0;
    z-index: 1030;	
}

.pos-abs-visible{
	 top: 0;
	 background:rgba(255, 255, 255, 0.9)!important;
}

/**/

.breadcrumb-item{
	font-size:14px;
}


.breadcrumb-item a{
	font-size:14px;
	color:#b5b5b5;
}

.termek-item{
	font-size:14px;
}

/**/

.fa-16x {
    font-size: 1.6em;
}

.parikaKeresoSelect{
	background: white;
    border: 1px solid #414b55;
    border-radius: 24px;
	height:42px;
	padding: 9px 15px 9px 15px;
}
.parikaKapcsolatSelect{
	background: white;
    border: 1px solid #ced4da;
	height:42px;
	padding: 0.375rem 0.75rem;
}

/********/

.small-text{
	font-size:0.8rem
}

.float-left{
	float:left;
}

@media (max-width: 575.98px) {
  .border-xs-left-none {
    border-left: none !important; }
  .border-xs-right-none {
    border-right: none !important; }
  .border-xs-top-none {
    border-top: none !important; }
  .border-xs-bottom-none {
    border-bottom: none !important; } }

@media (max-width: 767.98px) {
  .border-sm-left-none {
    border-left: none !important; }
  .border-sm-right-none {
    border-right: none !important; }
  .border-sm-top-none {
    border-top: none !important; }
  .border-sm-bottom-none {
    border-bottom: none !important; } }

@media (max-width: 991.98px) {
  .border-md-left-none {
    border-left: none !important; }
  .border-md-right-none {
    border-right: none !important; }
  .border-md-top-none {
    border-top: none !important; }
  .border-md-bottom-none {
    border-bottom: none !important; } }

@media (max-width: 1199.98px) {
  .border-lg-left-none {
    border-left: none !important; }
  .border-lg-right-none {
    border-right: none !important; }
  .border-lg-top-none {
    border-top: none !important; }
  .border-lg-bottom-none {
    border-bottom: none !important; } }

.border-xl-left-none {
  border-left: none !important; }

.border-xl-right-none {
  border-right: none !important; }

.border-xl-top-none {
  border-top: none !important; }

.border-xl-bottom-none {
  border-bottom: none !important; }
  
  
/****/

.owl-nav {
  position: absolute;
  width:100%;
  top: 50%;
}

.owl-nav button{
	background-color:transparent !important;
	color:#06043ae6!important;
}

.owl-nav button:hover{
	background-color:transparent !important;
	color:#2d62d7dd!important;
}

.owl-prev {
	left: 0;
	position: absolute;
	margin-top: -50px!important;
}

.owl-next {
	right: 0;
	position: absolute;
	margin-top: -50px!important;
}

.owl-dots {
	position: absolute;
	bottom: 15px;
	left:0;
	right:0;
}



#top-carousel{
	z-index:50;
	position:relative;
	/*margin-top:-75px;*/	
}

@media only screen and (max-width: 810px) {
	#top-carousel{
		margin-top:0px;	
	}	
}

#top-carousel .textoverlay{
	position:absolute;
	
	width:100%;
	height: 100%;
	padding:0 25%;
	z-index:50;

	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -moz-flex;
	display: -ms-flexbox;
	display: flex;

	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	justify-content: center;

	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	-moz-align-items: center;
	align-items: center;
}

.owl-carousel .textoverlaybase{
	display:none;
	position:relative;
}

.owl-carousel .textoverlaybasetxt{
	padding:20px;
	background:#000000AA;
	color:white;
	font-size:3vw;
	line-height:initial !important;
}

.index-note2 i:not(.fa-pencil-alt){
	text-align:center;
	padding-top:20px;
	color:white;
	border-radius:50%;
	font-size:28px;
	width:64px;
	height:64px;
}

.index-note2:nth-of-type(1) i { background-color: rgb(66, 133, 244); }
.index-note2:nth-of-type(2) i { background-color: rgb(34, 139, 34); }
.index-note2:nth-of-type(3) i { background-color: rgb(153, 0, 51); }
.index-note2:nth-of-type(4) i { background-color: rgb(102, 51, 153); }

.index-note2 .content{ 
	padding:10px;
	border:1px solid lightgray;
    height: 100%;
    width: 100%;	
	background: #efefef57;
}

#filterDiv{ 
	padding:10px;
	border:1px solid lightgray;
	background: #efefef57;
	height: max-content;
}

#filterDiv select{
		padding:10px;
		width:100%;
	border:1px solid lightgray;
}	