/* CSS Document */

/*
sm - Kleine Geräte (Tablets, 768px und breiter)
@media (min-width: 768px) { ... }

md - Mittlere Geräte (Desktop-PCs, 992px und breiter)
@media (min-width: 992px) { ... }

lg - Große Geräte (Desktop-PCs, 1200px und breiter)
@media (min-width: 1200px) { ... }
*/


.navbar-nav > li > a {
	padding: 10px 10px 0;
	color: #fff;
}
.navbar-nav.txt-blue > li > a {
	color: #1d3a8f;
}
.navbar-nav > li > a.active,
.navbar-nav > li > a:hover {
	color: #F28E5F;
	background-color: transparent;
}

.navbar-mobile > a:hover > .fa {
	color: #fff !important;
}

.img-center {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

@media (min-width: 380px) {
	.container-fluid {
		max-width: 1280px;
		padding-left: 30px;
		padding-right: 30px;
	}
}

@media (max-width: 450px) {
	html {
		font-size: 8px;
	}
	.col-xxs-12 {
		width: 100%;
	}
}


/* Spacing */

.m-0 {
	margin: 0 !important;
}
.mx-3 {
	padding-left: 1rem !important;
  	padding-right: 1rem !important;
}
.mx-4 {
	padding-left: 2rem !important;
  	padding-right: 2rem !important;
}
.mx-5 {
	padding-left: 3rem !important;
  	padding-right: 3rem !important;
}
.mt-neg-5 {
	margin-top: -120px;
}
.mt-0 {
    margin-top: 0!important;
}
.mt-1 {
    margin-top: 0.25rem!important;
}
.mt-2 {
    margin-top: 0.5rem!important;
}
.mt-3 {
    margin-top: 1rem!important;
}
.mt-4 {
    margin-top: 2rem!important;
}
.mt-5 {
    margin-top: 4rem!important;
}
.mb-0 {
    margin-bottom: 0!important;
}
.mb-1 {
    margin-bottom: 0.25rem!important;
}
.mb-2 {
    margin-bottom: 0.5rem!important;
}
.mb-3 {
    margin-bottom: 1rem!important;
}
.mb-4 {
    margin-bottom: 2rem!important;
}
.mb-5 {
    margin-bottom: 4rem!important;
}

.p-3 {
    padding: 1em;
}

@media (max-width: 379px) {
	.mt-neg-5 {
		margin-top: -90px;
	}
}


/* Text */
.text-left {
    text-align: left!important;
}


/* Tables */

.table > thead > tr > th {
	border: none;
}


/* Modal */

.nc-modal-close {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 28px;
	height: 28px;
	background-color: #fff !important;
	border-radius: 100%;
	float: none;
	filter: none !important;
	opacity: 1 !important;
/*	-webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .5)*/
}

/* Row with equal height columns */

@media (max-width: 767px) {
	.js-eq-height .col {
		height: auto !important;
	}
}

@media (min-width: 768px) {
	.row-eq-height {
		display: -webkit-box;
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		flex-wrap: wrap;
	}
	.row-eq-height .col {
		margin-bottom: 30px;
	}
	.row-eq-height .box {
		min-height: 100%;
		padding-bottom: 0;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.row-eq-height .col-sm-6 {
		width: 49.9%;
	}
}

@media (min-width: 992px) {
	.row-eq-height .col-md-3 {
		width:24.9%;
	}
	.row-eq-height .col-md-4 {
		width: 33.3%;
	}
	.row-eq-height .col-md-6 {
		width: 49.9%;
	}
	.row-eq-height .col-md-9 {
		width: 74.9%;
	}
	
	.pr-0-md {
		padding-right: 0;
	}
	.pl-0-md {
		padding-left: 0;
	}
}



