/*========================================================
                    	Navigation
=========================================================*/

@media(max-width: 991px){
	.navigation-container{
		width:100% !important;
	}

	.navbar-default .navbar-nav > li + li {
    margin-left: 28px;
	}


}

@media(max-width:1199px ){
	.logo {
    	width: 123px !important;
    	margin-top: 0px !important;
	}
}


/*========================================================
                    	Főoldal
=========================================================*/

.bg-warning {
    background: #f4e0d4 !important;
}

.navbar-default{
	padding-bottom: 53px !important;
}

.logo{
	width: 180px;
    margin-top: -11px;
}

.parallax-section{
	padding-bottom: 158px !important;
}

.mg_add{
	margin-top: 61px !important;
}


@media(max-width: 480px){
	.slider-text{
		display: none;
	}
}


/*========================================================
                    	Footer
=========================================================*/

footer {
    background: rgba(0, 0, 0, 0.9) !important;
}

.footer__ins {
    padding-top: 100px !important;
    padding-bottom: 10px !important;
}


/*========================================================
                    	Kapcsolati Aloldal
=========================================================*/

.riaszt_div {
    white-space: pre !important;
}


/*========================================================
                    Margin,Padding classes
=========================================================*/

.padbot0 {
	padding-bottom: 0px !important;
}
.padbot10 {
	padding-bottom: 10px !important;
}
.padbot20 {
	padding-bottom: 20px !important;
}
.padbot30 {
	padding-bottom: 30px !important;
}
.padbot40 {
	padding-bottom: 40px !important;
}
.padbot50 {
	padding-bottom: 50px !important;
}
.padtop0 {
	padding-top: 0px !important;
}
.padtop10 {
	padding-top: 10px !important;
}
.padtop20 {
	padding-top: 20px !important;
}
.padtop30 {
	padding-top: 30px !important;
}
.padtop40 {
	padding-top: 40px !important;
}
.padtop50 {
	padding-top: 50px !important;
}
.margtop0 {
	margin-top: 0px !important;
}
.margtop3 {
	margin-top: 3px !important;
}
.margtop10 {
	margin-top: 10px !important;
}
.margtop20 {
	margin-top: 20px !important;
}
.margtop30 {
	margin-top: 30px !important;
}
.margtop40 {
	margin-top: 40px !important;
}
.margtop50 {
	margin-top: 50px !important;
}
.margbot0 {
	margin-bottom: 0px !important;
}
.margbot10 {
	margin-bottom: 10px !important;
}
.margbot20 {
	margin-bottom: 20px !important;
}
.margbot30 {
	margin-bottom: 30px !important;
}
.margbot40 {
	margin-bottom: 40px !important;
}
.margbot50 {
	margin-bottom: 50px !important;
}


/* The container */
.checkhack {
	display: inline;
	position: relative;
	padding-left: 35px;
	margin-bottom: 12px;
	cursor: pointer;
	font-size: 20px;
	font-weight: normal;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
  }
  
  /* Hide the browser's default checkbox */
  .checkhack input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
  }
  
  /* Create a custom checkbox */
  .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	background-color: #eee;
	border: 1px solid;
  }
  
  /* On mouse-over, add a grey background color */
  .checkhack:hover input ~ .checkmark {
	background-color: #ccc;
  }
  
  /* When the checkbox is checked, add a blue background */
  .checkhack input:checked ~ .checkmark {
	background-color: #f44029;
  }
  
  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
	content: "";
	position: absolute;
	display: none;
  }
  
  /* Show the checkmark when checked */
  .checkhack input:checked ~ .checkmark:after {
	display: block;
  }
  
  /* Style the checkmark/indicator */
  .checkhack .checkmark:after {
	left: 9px;
	top: 5px;
	width: 5px;
	height: 10px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
  }