@import url("fonts.css");
@import url("fontawesome.min.css");
@import url("vegas.min.css");

/* GLOBAL */
html, body {
	height: 100%;
}
body {
	font-family: 'Raleway', sans-serif;
	font-size: 18px;
	font-weight: 400;
  color: #444;
  background: #fff;
  line-height: 1.8;
}


/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 200;
  text-transform: uppercase;
  font-style: italic;
  margin: 15px 0;
}
h1 {
  color: #3878be;
}

p {
  margin: 15px 0;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto;
}

small {
  display: block;
  font-size: 65%;
}

strong {
  font-weight: 600;
}

a {
  color: #3878be;
	transition: all .25s;
}
a:hover {
  color: #444;
  text-decoration: none;
}

ul.ul li {
	list-style-type: square;
}

ul.special li {
	line-height: 2;
	margin-bottom: 5px;
	list-style-image: url("../img/ul.png");
}
ul.special-w li {
	line-height: 2;
	margin-bottom: 5px;
	list-style-image: url("../img/ul-w.png");
}


/* BUTTONS */
.btn {
	border-radius: 0;
	transition: all .25s;
	text-transform: uppercase;
	font-weight: 600;
	box-shadow: none !important;
}

.btn-primary {
	background-color: #3878be !important;
	border-color: #3878be !important;
	color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus {
	background-color: #444 !important;
	border-color: #444 !important;
	color: #fff !important;
}

.btn-light {
	background-color: #fff !important;
	border-color: #fff !important;
	color: #444 !important;
}
.btn-light:hover,
.btn-light:focus {
	background-color: #444 !important;
	border-color: #444 !important;
	color: #fff !important;
}



/* HEADER */
header {
  padding: 15px 0;
  background: #3878be;
  color: #fff;
  display: block;
  position: relative;
  z-index: 2;
}
header .header-text {
  font-size: 16px;
  margin: 0;
}
header .header-text a {
  color: #fff;
}


/* NAV */
.navbar {
  position: relative;
  z-index: 1;
  background-color: #fff !important;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.navbar .navbar-brand img {
  width: 160px;
  transition: all .25s;
	padding: 15px 0;
}

.navbar .navbar-nav {
	width: 100%;
}
.navbar .nav-item {
	max-width: 100%;
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
}
.navbar .nav-link {
  text-transform: uppercase;
  padding: 15px;
}
.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
  color: #3878be !important;
}

.navbar.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.navbar.fixed-top .navbar-brand img {
  width: 120px;
	padding: 0;
}

.navbar-toggler {
	border-radius: 0;
	border: none;
	font-size: 28px;
	color: #3878be !important;
	outline: none !important;
}


/* SLIDER */
.slider {
  display: block;
  min-height: 500px;
	position: relative;
}


/* MAIN */
main {
  display: block;
  position: relative;
}


/* SECTION */
section {
  padding: 30px 0;
}
section.splice {
  position: relative;
  background: #444;
  color: #fff;
}
section.splice.bg-grey {
  background: #3878be;
}
section.splice::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 0;
  background: #3878be;
}
section.splice.bg-grey::before {
  background: #444;
}
section.splice h1,
section.splice h2,
section.splice h3,
section.splice h4,
section.splice a {
  color: #fff; 
}
section.splice [class*="col-"] {
  padding-right: 45px;
}
section.splice [class*="col-"]:last-child {
  padding-right: 15px;
  padding-left: 45px;
}

section.splice.img-left::before {
  right: 0;
  left: auto;
  min-height: 200px;
}
section.splice.img-right::before {
  left: 0;
  right: auto;
  min-height: 200px;
}

section.splice.img-left,
section.splice.img-right {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* FOOTER */
footer {
  background: #444;
  color: #fff;
  padding: 45px 0;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: #fff;
	opacity: 0.5;
}


/* PROFILE */
.profile {
	display: flex;
	flex-direction: row;
	align-items: center;
	text-align: left;
	margin-bottom: 30px;
	padding: 15px;
	border: 1px solid #3878be;
	background: #fff;
}
.profile .profile-img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px solid #3878be;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-right: 15px;
	display: none;
}
.profile .profile-info {
	word-wrap: break-word;
}
.profile .profile-name {
	line-height: 1.2;
	color: #3878be;
}
.profile .profile-name small {
	color: #444;
	word-wrap: break-word;
	font-size: 12px;
}
.profile .profile-kontakt {
	font-size: 12px;
	margin-top: 5px;
}
.profile .profile-kontakt i {
	width: 15px;
}


/* FORM */
.form-control {
	border-radius: 0;
	border: none;
	background: none;
	border-bottom: 1px solid #444;
	transition: all .25s;
}
.form-control:focus {
	background: rgba(255,255,255,0.25);
	border-color: #444;
	box-shadow: none !important;
	color: #444;
}

.has-error .form-control {
	border-color: #dc3545;
}
.has-error label,
.has-error .help-block {
	color: #dc3545;
}

#danke {
	display: none;
}


/* MODAL */
.modal-content {
	border-radius: 0;
	border: none;
	box-shadow: none;
}
.modal-header {
	border-radius: 0;
}
.modal-header .modal-title {
	margin: 0;
}
.modal-body {}
.modal-footer {
	border-radius: 0;
}


/* SHORT BUTTONS */
.short-btn {
	display: flex;
	flex-direction: column;
	position: fixed;
	right: 15px;
	bottom: 15px;
	z-index: 800;
}
.short-btn .short-btn-item {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	background: #fff;
	color: #3878be;
	box-shadow: 0 0 7.5px 0 rgba(0,0,0,0.25);
	border-radius: 50%;
	margin-bottom: 7.5px;
}

.oeffnungszeiten {
  background: #3878be;
  color: #fff;
  padding: 30px;
  display: block;
  width: 100%;
  max-width: 305px;
  margin: 0 auto;
}


/* CCM19 */
.ccm-settings-summoner {
	display: none !important;
}


/* MOBIL */
@media (max-width: 1199.98px) {}
@media (max-width: 991.98px) { 
	/* NAV */
	.navbar .navbar-brand img {
		width: 120px;
		padding: 0;
	}	
	
	.navbar .nav-item {
		text-align: left;
	}
	.navbar .nav-link {
		padding: 5px 0;
	}
	
	/* SLIDER */
	.slider {
		min-height: 320px;
	}
}
@media (max-width: 767.98px) { 
	/* SLIDER */
	.slider {
		min-height: 220px;
	}
	
	/* SECTION */
  section.splice [class*="col-"],
  section.splice [class*="col-"]:last-child {
    padding-left: 15px;
    padding-right: 15px;
  }
  section.splice::before { 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: block;
  }
}
@media (max-width: 575.98px) { }

