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

:root {
  --primary: #e73336;
  --secondary: #444;
  --tertiary: #fc9b40;
  
  --white: #ffffff;
  --dark: #000000;
  --gray: #eeeeee;
  --danger: #b70000;
}

html, body {
  height: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  
  background-color: var(--gray);
  color: var(--secondary);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.5;
  margin: 15px 0;
  color: var(--primary);
}
h2, h3, h4, h5, h6 {
  color: var(--secondary);
}

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

a {
	color: var(--primary);
	text-decoration: none;
	transition: all 0.25s;
}
a:hover {
	color: var(--secondary);
	text-decoration: none;
}

small {
  display: block;
  font-size: 75%;
  color: var(--secondary);
}

strong {
  font-weight: 600;
}

hr {
  margin: 45px 0;
  border-color: var(--secondary);
  background-color: var(--secondary);
}

.special-list {
  font-weight: 600;
  min-width: 230px;
  display: inline-block;
  vertical-align: top;
}

.ul {
  list-style-image: url("../img/ul.png");
  padding-left: 45px;
}
.ul li {
  margin-bottom: 15px;
  line-height: 1.5;
}


/* TWO VOLS */
.two-cols {
  -moz-column-width: 320px;
  -moz-column-gap: 30px;
  -moz-hyphens: auto;
  
  -webkit-column-width: 320px;
  -webkit-column-gap: 30px;
  -webkit-hyphens: auto;  
  
  column-width: 320px;
  column-gap: 30px;
  
  display: block;
}

.two-cols.xl {
  -moz-column-width: 600px;
  -webkit-column-width: 600px;
  column-width: 600px;
}

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

.btn-primary {
  border-color: var(--primary) !important;
  color: var(--primary) !important;
}
.btn-primary:hover,
.btn-primary:focus {
  border-color: var(--tertiary) !important;
  color: var(--tertiary) !important;
}

/* IMAGES */
.main-img {
  width: 100%;
  border: 1px solid var(--secondary);
  margin: 15px 0;
}
.main-img.float-start {
  margin: 0 15px 0 0;
  width: 100%;
  max-width: 393px;
}
.main-img.float-end {
  margin: 0 0 0 30px;
  width: 100%;
  max-width: 393px;
}

.illustration {
  margin-bottom: 30px;
  width: 100%;
}

/* CONTENT */
.content {
  display: block;
  padding: 30px;
  background-color: var(--white);
  box-shadow: 0 0 0 30px rgba(255,255,255,0.2);
  margin: 60px 0 60px 0;
  position: relative;
}

/* SUBNAV */
.subnav {
  position: fixed;
  top: auto;
  right: 0;
  background: var(--white);
  z-index: 1000;
}
.subnav .subnav-item {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: var(--primary);
  color: var(--white);
  border: none;
  border-bottom: 1px solid var(--white);
}
.subnav .subnav-item:hover {
  background-color: var(--tertiary);
}

/* INFOLINE */
.infoline {
  font-size: 16px;
  line-height: 1.5;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
}
.infoline p {
  margin: 0;
}
.infoline i {
  display: inline-block;
  width: 22px;
}
.infoline .infoline-wrapper {
  padding: 15px 25px;
  width: 100%;
}
.infoline .infoline-logo {
  padding: 15px;
  background-color: var(--white);
}
.infoline .infoline-logo .navbrand-logo {
  width: 450px;
}

.infoline p a {
	color: var(--white);
	text-decoration: underline;
	transition: all 0.25s;
}
.infoline p a:hover {
	color: var(--white);	
	text-decoration: none;
}

/* HEADER */
.header {
  display: flex;
  align-items: center;
  justify-content:flex-start;
  min-height: 400px;
  padding: 45px;
  background-color: var(--gray);
}
.header .header-wrapper {
  padding: 30px;
  background-color: rgba(255,255,255,0.5);
  text-align: center;
}
.header .header-wrapper .header-title {
  font-weight: 600;
}
.header .header-wrapper .header-text {
  font-size: 28px;
}

/* NAV */
.navbar {
  background-color: var(--white) !important;
  border-bottom: 30px solid var(--secondary);
  padding-top: 0;
  padding-bottom: 0;
}
.navbar .navbar-nav {
	width: 100%;
}
.navbar .nav-item {
	max-width: 100%;
	flex-grow: 1;
	flex-basis: 0;
	text-align: center;
}
.navbar .nav-item .nav-link {
  padding: 30px 15px;
  border-bottom: 30px solid var(--secondary);
  margin-bottom: -30px;
  color: var(--secondary);
  transition: all .25s;
}
.navbar .nav-item .nav-link:hover,
.navbar .nav-item .nav-link:focus,
.navbar .nav-item .nav-link.active {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

.navbar-brand {
  display: none;
  margin: 0;
  padding: 0 15px;
}
.navbar-brand .navbrand-logo {
  width: 50px;
}

.navbar-toggler {
  border-radius: 0;
  border: none;
  padding: 0;
  box-shadow: none !important;
}
.navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23444' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dropdown-menu {
  border-radius: 0;
  border: none;
  box-shadow: 0 10px 10px -5px rgba(0,0,0,0.25);
  padding: 0;
  width: 220px;
}
.dropdown-item {
  font-size: 16px;
  padding: 10px 15px;
}
.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background-color: var(--primary);
  color: var(--white);
}

.navbar.fixed-top {
  position: fixed;
  top: 0;
  margin: 0 auto;
  box-shadow: 0 10px 10px -5px rgba(0,0,0,0.25);
  border-bottom: none;
  border-top: 10px solid var(--secondary);
  z-index: 900;
}
.navbar.fixed-top .nav-item .nav-link {
  border-bottom: none;
  border-top: 10px solid var(--secondary);
  margin-bottom: 0;
  margin-top: -10px;
  padding: 20px 15px;
}
.navbar.fixed-top .nav-item .nav-link:hover,
.navbar.fixed-top .nav-item .nav-link:focus,
.navbar.fixed-top .nav-item .nav-link.active {
  border-bottom-color: none;
  border-top-color: var(--primary);
}

/* MAIN */
main {
  padding: 15px 0;
}

/* FOOTER */
footer {
  padding: 15px;
  background-color: var(--secondary);
  color: var(--white);
  font-size: 16px;
  position: relative;
  z-index: 1;
}
footer .copyright {
  margin: 0;
}
footer .footer-nav a {
  margin-right: 10px;
  padding-right: 11px;
  border-right: 1px solid rgba(238, 238, 238, 0.25);
  color: var(--white);
}
footer .footer-nav a:hover,
footer .footer-nav a:focus,
footer .footer-nav a.active {
  color: var(--primary);
}
footer .footer-nav a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

/* CREATOR */
.creator {
	display: block;
  margin: 30px 0;
  padding-bottom: 30px;
}
.creator a {
	margin: 0;
	text-align: center;
	font-size: 14px;
	font-weight: 400;
	color: var(--secondary);
	display: block;
	opacity: 1;
}
.creator a:hover {
  opacity: 0.5;
}
.creator a img {
	width: 25px;
}

/* MODALE */
.modal-content {
  border-radius: 0;
  border: none;
}
.modal-header {
  padding: 30px;
  background-color: var(--primary);
  border-radius: 0;
}
.modal-header .modal-title {
  margin: 0;
  color: var(--white);
}
.modal-header .btn-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}
.modal-body {
  padding: 30px;
  border-radius: 0;
}
.modal-body p:first-child {
  margin-top: 0;
}
.modal-body p:last-child {
  margin-bottom: 0;
}

/* ACCORDION */
.accordion {
  display: block;
}
.accordion-item {
  margin-bottom: 15px;
  border-radius: 0px !important;
  border: none;
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-header {
  border-radius: 0px !important;
  margin: 0;
}
.accordion-button {
  border-radius: 0 !important;
  background-color: var(--primary);
  color: var(--white);
  transition: all .25s;
  padding: 10px 15px;
}
.accordion-button:hover,
.accordion-button:focus,
.accordion-button:not(.collapsed) {
  background-color: var(--tertiary);
  color: var(--white);
  box-shadow: none;
}
.accordion-button::after,
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}


/* TEAM */
.team-item {
  display: block;
  padding: 15px;
}
.team-item .team-img {
  width: 100%;
  max-width: 120px;
  display: block;
  border-radius: 50%;
  border: 1px solid var(--dark);
}
.team-item .team-info {
  display: block;
  line-height: 1.2;
  font-size: 16px;
}
.team-item .team-info .team-name {
  font-weight: 600;
  color: var(--primary);
  line-height: 1.8;
  font-size: 18px;
}

/* FORM */
.form-group {
  margin-bottom: 30px;
}
.form-control,
.form-select {
  border-radius: 0;
}
.form-control:focus,
.form-select:focus {
  box-shadow: none;
  border-color: var(--secondary);
}

.has-error .form-control,
.has-error .form-select {
	border-color: var(--primary);
}
.has-error .help-block,
.has-error label {
	color: var(--primary);
}

#danke {
	display: none;
}

/* NEWS */
.news-box {
  display: block;
}
.news-item {
  display: block;
  padding: 7.5px 15px;
  margin-bottom: 5px;
  position: relative;
}
.news-item:nth-child(even) {
  background-color: #f2f2f2;
}
.news-item:hover::after {
  content: 'Mehr lesen...';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255,255,255,.75);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-around;
  font-weight: 600;
  padding: 7.5px 15px;
}
.news-text {
  line-height: 1.3;
}
.news-icon {
  font-size: 28px;
  display: inline-block;
  vertical-align: top;
  line-height: 1.3;
  width: 45px;
}
.news-title {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
  width: calc(100% - 50px);
}
.news-title small {
  font-size: 14px;
}

.news-detail {
  clear: both;
  display: block;
}
.news-detail-img {
  float: left;
  margin: 0 30px 5px 0;
  border: 1px solid var(--secondary);
  width: 100%;
  max-width: 320px;
  min-height: 220px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.news-detail-content {}
.news-detail-title {
  margin: 0 0 15px 0;
  line-height: 1.2;
}
.news-detail-title small {
  font-size: 16px;
}


/* NOTICE */
.notice {
  display: flex;
  flex-direction: row;
  padding: 15px 55px 15px 15px;
  background-color: var(--primary);
  color: var(--white);
  margin-top: 30px;
  text-align: justify;
  -moz-hyphens: auto; 
  -o-hyphens: auto; 
  -webkit-hyphens: auto; 
  -ms-hyphens: auto; 
  hyphens: auto; 
  box-shadow: 0 0 15px 0 rgba(0,0,0,0.5);
}
.notice-icon {
  display: inline-block;
  font-size: 38px;
  margin-right: 15px;
}
.notice-text {
  display: inline-block;
  font-size: 16px;
}

/* alert */
.alert {
  padding: 0;
  border: none;
  border-radius: 0;
  margin: 0;
}
.alert .btn-close {
  box-shadow: none !important;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
}

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



/*********************/
/* +++++ MOBIL +++++ */
/*********************/
@media (max-width: 1399.98px) { }
@media (max-width: 1199.98px) { 
  /* INFOLINE */
  .infoline {
    display: block;
  }
  .infoline .infoline-logo {
    width: 100%;
    text-align: center;
  }
  .infoline .infoline-logo .navbrand-logo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 991.98px) {
  /* IMAGES */
  .illustration {
    max-width: 220px;
    display: block;
    margin: 0 auto 30px auto;
  }
  
  /* SUBNAV */
  .subnav {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    
  }
  .subnav .subnav-item {
    width: 100%;
    border-bottom: none;
    font-size: 22px;
    height: 45px;
  } 
  
  /* NAV */
  .navbar {
    border-bottom-width: 1px;
    padding: 15px;
  }
  .navbar .nav-item {
    text-align: left;
  }
  .navbar .nav-item .nav-link {
    padding: 5px 15px;
    border-bottom: none;
    margin-bottom: 0;
    border-left: 5px solid transparent;
  }
  .navbar .nav-item .nav-link:hover,
  .navbar .nav-item .nav-link:focus,
  .navbar .nav-item .nav-link.active {
    border-left-color: var(--primary);
  }
  
  .dropdown-menu {
    width: 100%;
  }
  
  .navbar-brand { 
    display: block !important;
    padding-left: 0;
  }
  
  .navbar.fixed-top {
    left: 0;
    right: 0;
    box-shadow: 0 10px 10px -5px rgba(0,0,0,0.25);
    border-bottom: none;
    border-top: none;
  }
  .navbar.fixed-top .nav-item .nav-link {
    border-bottom: none;
    border-top: none;
    margin-bottom: 0;
    margin-top: -0;
    padding: 5px 15px;
  }
  .navbar.fixed-top .nav-item .nav-link:hover,
  .navbar.fixed-top .nav-item .nav-link:focus,
  .navbar.fixed-top .nav-item .nav-link.active {
    border-bottom-color: none;
    border-top-color: none;
  }
  
  /* CREATOR */
  .creator {
    margin-bottom: 75px;
  }
  
  /* TEAM */
  .team-item .team-img {
    margin: 0 auto 15px auto;
  }
  .team-item .team-info {
    text-align: center;
  }
  
  /* NEWS */
  .news-detail-img {
    float: none;
    margin: 0 auto 30px auto;
    max-width: 100%;
    min-height: 280px;
  }
}
@media (max-width: 767.98px) { 
  /* TYPOGRAPHY */
  .special-list {
    display: block;
  }
  
  /* HEADER */
  .header {
    min-height: 200px;
  }
  .header .header-wrapper {
    display: none;
  }
  
  /* NEWS */
  .news-detail-img {
    min-height: 200px;
  }
}
@media (max-width: 575.98px) { 
  .container {
    padding-left: 0;
    padding-right: 0;
  }
  
  /* CONTENT */
  .content {
    display: block;
    padding: 15px;
    background-color: var(--white);
    box-shadow: none;
    margin: 0;
    position: relative;
  }
  
  /* NAV */
  .navbar.fixed-top {
    width: 100% !important;
    margin: 0 auto;
    left: 0;
    right: 0;
  }
  
  /* FOOTER */
  footer {
    padding: 30px;
  }
}











