:root {
  --kt-primary-color: #00285A;
  --kt-footer-color: #00285A;
  --kt-font-color:  #23527c;
  --kt-table-hover-background: #774BB6;
}


/* Menü */
nav,  .dialog-active {
  background-color: var(--kt-primary-color);
}

.panel a {
   color: var(--kt-font-color);
}


/* Blättern */
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: var(--kt-primary-color);
  border: 1px solid var(--kt-primary-color);
}

/* Reiter */
.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
  background-color: var(--kt-primary-color);
}

/* Footer */
footer {
  background-color: var(--kt-footer-color);
}

footer a:focus {
color: #fff;
}

/* Neue Variante mit dem Effekt: Container im Footer steht oben über den Footer heraus */

footer {
  min-height: 230px;
  background: #fff;
  background: -moz-linear-gradient(top,#fff 0%,#fff 33%,#00285a 33%,#00285a 100%);
  background: -webkit-linear-gradient(top,#fff 0%,#fff 33%,#00285a 33%,#00285a 100%);
  background: linear-gradient(top bottom,#fff 0%,#fff 33%,#00285a 33%,#00285a 100%);
  padding-bottom: 0px;
}

/** Container  im Footer */
footer > .container{
  padding-top: 10px;
  padding-right: 15px;
  padding-left: 15px;
  background-color: #E6E6E6;
  color: #505050;
  min-height: 200px;
  magin-right: auto;
  margin-left: auto;
  width: 460px;
}

/* Schriftfarbe im Footer  */
footer a, footer a:focus, footer a:hover {
color:  #505050;
}


/** Footerlinks für kleine Screens z.B. Handies links platziert */
footer .footerlinks {
  text-align: left;
}

@media (min-width: 768px) {
  footer > .container {
     width: 750px;
  }
}

@media (min-width: 992px) {
  footer > .container {
    width: 980px;
  }
  
  /** Footerlinks ab Tabletgröße rechts platziert  */
  footer .footerlinks {
     text-align: right;
  }

}

@media (min-width: 1180px) {
  footer > .container {
    width: 1170px;
  }
}