* {
  margin: 0;
  padding: 0;
}

:root {
  --padding: 1.5rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-text: var(--color-black);
  --color-text-grey: var(--color-grey);
  --color-background: var(--color-white);
  --color-code-light-grey:  #cacbd1;
  --color-code-comment:     #a9aaad;
  --color-code-white:       #c5c9c6;
  --color-code-red:         #d16464;
  --color-code-orange:      #de935f;
  --color-code-yellow:      #FFE802;
  --color-code-blue:        #001F91;
  --color-code-grey:        #e5e1de;
  --font-family-sans: 'Roboto Condensed', Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  /*--font-family-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, Courier, monospace;*/
}

.yellow {
  color: var(--color-code-yellow);
}

html {
  font-family: var(--font-family-sans);
  color: var(--color-text);
}
img{
  max-width: 100%;
}
.blurline {
  top: 0;
  left: 0;
  position: fixed;
  height: 10px;
  width: 100%;
  background-image: linear-gradient(0deg, rgba(0,53,148,0.00) -15%, rgba(0,8,79,0.89) 100%, #000247 100%);
  z-index: 99;
}
body {
  max-width: 80rem;
  margin: 0 auto;
  background: var(--color-background);
  background-image: linear-gradient(180deg, #00259E 0%, #001065 100%);
}
li {
  list-style: none;
}
a {
  color: currentColor;
  text-decoration: none;
}
button {
  font: inherit;
  background: none;
  border: 0;
  color: currentColor;
  cursor: pointer;
}
strong, b {
  font-weight: 600;
}
small {
  font-size: inherit;
  color: var(--color-text-grey);
}

header.main {
  position: relative;
  margin: 2rem 0 0 0; /*MUSS an MOBILE angepasst werden*/
  z-index:99;
}

.embed-container {
  position: relative; 
  padding-bottom: 56.25%; /* ratio 16x9 */
  height: 0; 
  overflow: hidden; 
  width: 100%;
  height: auto;
}
.embed-container iframe {

  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}
/* ratio 4x3 */
.embed-container.ratio4x3 {
  padding-bottom: 75%;
}


.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}


@media (min-width: 1200px) {header.main {margin-bottom: -1.5rem}}
/*@media (min-width: 1400px) {header.main {margin-bottom: -2.5rem}}*/


@media (min-width: 576px) {main .col-sm-12 {margin-bottom: 2rem;}}

figure {
  margin: 0;
}
ul {
  padding: 0;
  margin:0;
}

.pad1 {padding: 1rem;}
.pad2 {padding: 2rem;}
.pad3 {padding: 3rem;}

.gradblue {
  background-image: linear-gradient(180deg, #00259E 0%, #001065 100%);
}
.gradyellow {
  background-image: linear-gradient(0deg, #FFC702 0%, #FFE802 92%);
}
.gradgrey {
  background-image: linear-gradient(179deg, #FCFCFC 0%, #D7D2CC 100%);
}

.btn-primary {
  background-color: var(--color-code-blue);
  border-color: var(--color-code-blue);
}
.btn-primary:hover {
    color: #fff;
    background-color: #0b5ed7;
    border-color: #0a58ca;
}



/* Navigation */
ul.mainmenu li a.active {
    color: var(--color-code-yellow);
    font-weight: normal;
}

ul.submenu li a.active {
  color: var(--color-code-blue);
  font-weight: bold;
}


a.socbox {
    padding-top: 6px;
    display: block;
}
a.socbox:hover {
  color: var(--color-code-yellow);
}




/*

Suche

*/
  .flysearch {
      position: absolute;
      padding: 1rem;
      width: 265px;
      border-radius: 5px;
  }
@media (max-width: 576px) {
  .flysearch {right: 0;}
}

@media (min-width: 768px) {
  .flysearch {left: -180px;}
}
@media (min-width: 992px) {
  .flysearch {left: -120px;}
}

button.search:focus {
  border: none;
  outline: none;
}



ul.social {
  width: 100%;
  display: inline-flex;
}
.social a {
  padding: 1rem;
  line-height: 0;
}
header .social a:hover {
  color: var(--color-code-yellow);
  font-size: 150%;
}
.social img {
  width: inherit;
}

.social-blue a {
  color: var(--color-code-blue);
}


.socialhead {
  font-size: 1.5rem;
}
.socialhead a:hover {
  color: yellow;
}

.sidebar .socialhead a:hover {
  color: black;
}


.logobox img {
  width: 100%;
}

.bluebar {
  position: relative;
  background: url(../img/head_bluebar.png)  left center no-repeat;
  width: 100%;
  height: 46px;
  margin-top:30px;
  z-index: 1;
}


.bluebar .infoslider {
  position: relative;
  display: inline-block;
  width: 230px;
  height: 45px;
  right: 1%;

}
.infoslider .weekbar {
  width: 140px;
  height: 51px;
  background: url(../img/head_week.png) center center no-repeat;
  color: var(--color-code-blue);
  font-weight: bold;
  z-index:2;
}
.infoslider .title {
  line-height: 51px;
  text-align: center;
}
.infoslider .number {
  position: absolute;
  top: 0;
  left: 72px;
  font-size: 2.2rem;
}
.infoslider .nextmatch {
  color:#fff;
  font-weight: bold;
  line-height: 51px;
  white-space: nowrap;
}
.infoslider .nextmatch span {
  color: #FFE802;
}

.container.padTop {
  padding-top:3rem;
}

.row.full figure {
  margin:0;
}

section {
  background: #fff;
  padding: 2rem;
}
section.grid {
    padding: 0 2rem;
}
section.grid:first-child {
    padding-top: 2rem;
}


@media screen and (max-width: 768px) {
  .col-sm-6.stuck {
    width: 50% !important;
    flex:0 0 auto !important;
  }
  .col-sm-4.stuck {
    width: 33% !important;
    flex:0 0 auto !important;
  }
  .col-sm-3.stuck {
    width: 25% !important;
    flex:0 0 auto !important;
  }
}

.grid {
  --columns: 12;
  --gutter: 3rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: 1fr;
}
.grid > .column {
  margin-bottom: var(--gutter);
}

.autogrid {
  --gutter: 3rem;
  --min: 10rem;
  display: grid;
  grid-gap: var(--gutter);
  grid-template-columns: repeat(auto-fit, minmax(var(--min), 1fr));
  grid-auto-flow: dense;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 600;
  /*line-height: inherit;*/
  color: var(--color-code-blue);
  font-family: 'Roboto Condensed', Roboto, Helvetica, Arial, sans-serif;
}

*.blau {
  color: var(--color-code-blue);
}
*.gelb {
  color: var(--color-code-yellow);
}
*.grau {
  color: var(--color-code-grey);
}


.text {
  line-height: 1.5em;
}
.text a {
  text-decoration: underline;
}
.text :first-child {
  margin-top: 0;
}
.text :last-child {
  margin-bottom: 0;
}
p,
ul,
ol,
.text p,
.text ul,
.text ol {
  margin-bottom: 1rem;
}
ul,
ol,
.text ul,
.text ol {
  margin-left: 1rem;
}
.text ul p,
.text ol p {
  margin-bottom: 0;
}
.text ul > li {
  list-style: disc;
}
.text ol > li {
  list-style: decimal;
}
.text ul ol,
.text ul ul,
.text ol ul,
.text ol ol {
  margin-bottom: 0;
}
h1,
.text h1,
.h1,
.intro {
  font-size: 3rem;
  margin-bottom: 2rem;
  line-height: 1.25em;
  font-weight: 600;
}
h2,
.text h2,
.h2 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}
h3,
.text h3,
.h3 {
  font-size: 1.8rem;
  font-weight: 600;
}
.text .codeblock {
  display: grid;
}
.text code {
  font-family: var(--font-family-mono);
  font-size: 1em;
  background: var(--color-light);
  padding: 0 .5rem;
  display: inline-block;
  color: var(--color-black);
}
.text pre {
  margin: 3rem 0;
  background: var(--color-black);
  color: var(--color-white);
  padding: 1.5rem;
  overflow-x: scroll;
  overflow-y: hidden;
  line-height: 1.5rem;
}
.text pre code {
  padding: 0;
  background: none;
  color: inherit;
}
.text hr {
  margin: 6rem 0;
}
.text dt {
  font-weight: 600;
}
.text blockquote {
  font-size: 1.25rem;
  line-height: 1.325em;
  border-left: 2px solid var(--color-black);
  padding-left: 1rem;
  margin: 3rem 0;
  max-width: 25rem;
}
.text blockquote footer {
  font-size: .875rem;
  font-style: italic;
}
/*.text figure {
  margin: 3rem 0;
}*/
.text figcaption {
  padding-top: .75rem;
  color: var(--color-text-grey);
}

hr {
  border: 0;
  background: currentColor;
  height: 2px;
  width: 1.5rem;
  margin: 2rem auto;
}

.align-center {
  text-align: center;
}

.intro {
  max-width: 40rem;
}
.intro *:not(:last-child) {
  margin-bottom: 1em;
}

.cta {
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  justify-content: center;
  padding: .75rem 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-black);
}

.box {
  background: var(--color-light);
  padding: 1.5rem;
  border: 4px solid var(--color-white);
  outline: 2px solid var(--color-light);
}

.video,
.img {
  position: relative;
  display: block;
  --w: 1;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  background: var(--color-black);
}
.img img,
.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.img[data-contain] img {
  object-fit: contain;
}
.img-caption,
.video-caption {
  padding-top: .75rem;
  line-height: 1.5em;
}


footer.main {
  padding: 3rem;
  line-height: 1.5em;
  background-image: linear-gradient(61deg, #FFC702 22%, #FFE802 100%);
}
footer.main ul {
  padding-left:0;
}

footer.main:before {
  content: "";
  display: block;
  width: 1.5rem;
  height: 2px;
  background: var(--color-black);
  margin-bottom: 1.5rem;
}

footer.main h2 {
  font-weight: 600;
  margin-bottom: .75rem;
}
footer.main ul,
footer.main p {
  color: var(--color-text-grey);
}
footer.main p {
  max-width: 15rem;
}
footer.main a:hover {
  color: var(--color-text);
}


.map {
  --w: 2;
  --h: 1;
  padding-bottom: calc(100% / var(--w) * var(--h));
  position: relative;
  overflow: hidden;
  background: var(--color-black);
}
.map iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/*.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}*/


@media screen and (min-width: 60rem) {
  body {
    --padding: 3rem;
  }

  .grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .grid > .column {
    grid-column: span var(--columns);
  }

}

.pagination {
  display: flex;
  /*padding-top: 6rem;*/
  justify-content: center;
}
.pagination > span {
  color: var(--color-text-grey);
}
.pagination a,.pagination span {
  display: block;
  padding: .5rem;
  width: 3rem;
  text-align: center;
}
.pagination li {
  border: 2px solid var(--color-code-blue);
  background: var(--color-code-blue);
  color: var(--color-code-yellow);
  margin-right: 1.5rem;
}

.pagination li.active {
  border: 2px solid var(--color-code-yellow);
  background: var(--color-code-yellow);
  color: var(--color-code-blue);
}
.pagination li.inactive {
  border: 2px solid var(--color-code-grey);
  background: var(--color-code-grey);
  color: var(--color-code-blue);
}

.pagination a:hover {
  color: #fff;
}

ul.nav.category {
  padding: 0;
  margin: 0;
}

ul.nav.category li a {

}
ul.nav.category li a.active {
  background: var(--color-code-yellow)
}


article.news {
  margin-bottom: 1rem;
}

.newsdetail {
  padding: 3rem;
}
.newsdetail main p{
text-align: justify;
}

.newsdetail footer {
  margin-top: 1rem;
}

.news-image {
  position: relative;
  margin-bottom: .7rem;
}
.news-cat {
  position: absolute;
  z-index: 9;
  bottom: 0;
  left: 0;
  background: rgba(255,255,255,.5);
  padding: 3px 7px;
  font-size: .7rem;
}

.news-excerpt {
  line-height: 1.5em;
}
.news-excerpt header {
  margin-bottom: 1.5rem;
}
.news-excerpt figure {
  margin-bottom: 10px;
  margin-bottom: .5rem;
}
.news-excerpt-title {
  margin-bottom: 10px;
  font-weight: 600;
}
.news-excerpt-date {
  color: var(--color-text-grey);
}
.news.quad h3 {
  font-size: 1.3rem;
}

.autor ul.social {
  margin-left:0;
  padding:0;
}
.autor ul.social li {
  display: inline-block;
}

#gamebox {
  position: absolute;
  padding:1rem 2rem .5rem 2rem;
  top:0;
  right:11px;
  background: var(--color-code-blue);
  width: 300px;
  border-radius: 0 0 0 20px;
  color:white;
}
.game-date h2 {
  text-align: center;
  color: var(--color-code-yellow);
}
.game-date  h2 span {
  display: block;
  font-size: 1rem;
  margin-left: 5px;
  color:#fff;
}
.game-points,
.gamepoints {
  color:#fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 2px #000000;
}
.game-divider {
  width:30%;
  font-weight: bold;
  float: left;
  color:#fff;
  font-size: 2rem;
  font-weight: bold;
  text-shadow: 2px 2px 2px #000000;
  margin-top: 45px;
}
.Preview .game-divider {
  margin-top:15px;
}
.game-team {
  width: 35%;
  float:left;
}
.game-loc {
  font-size: .8rem
}

 #gamebox-line div>*
 {
    margin-bottom: 0;
}


/*Mobile*/
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

.pad1,.pad2,.pad3 {padding: 1rem;}
#gamebox {
  position: relative;
  left:0;
  padding:1rem 2rem .5rem 2rem;
  background: var(--color-code-blue);
  width: 100%;
  border-radius: 0 0 10px 10px;
  color: #fff;
  }
  .newsdetail {
  padding: 1rem;
  }
  h1.note-title {
    font-size: 2.2rem;
  }
  .bluebar {
    margin-top: 0;
  }
}
@media screen and (max-width: 540px) {
    div#gamebox-line {
      padding-left: 15px;
    }
}


.badge {
  background: var(--color-code-blue);
  color: var(--color-code-yellow);
  text-transform: uppercase
  } 


.news-prereviews span.points {
  padding: 1.5rem;
  display: block;
  color:white;
  font-size: 1.5rem;
  line-height: 1rem;
  text-shadow: 0px 0px 5px #000000;
  color:#ffffff;
}
.news-prereviews span.divider {
  color:#ffffff;
  font-weight: bold;
  text-shadow: 1px 1px 2px #000000;
  padding:0;
}

.news-prereviews td.icon {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.news-prereviews .overlay {
  background: rgba(0,0,0,.3)
}

td.details {
  color: #fff;
  font-size: .7rem;
  padding: .2rem .5rem;
  background: #ababab;
  text-align: center;
}

/* @media screen and (max-width: 1200px) {
  main.main .row>* {
    margin-bottom: 20px;
  } */




.news-moves {
  
}
.news-moves .moverow {
  padding: 5px;
}
.news-moves .moverow:nth-child(even) {
    background: #eee
}

