@charset "UTF-8";

/*╔══════════╗
    ║  BANNER  ║
    ╚══════════╝*/

#Logo {
  max-height: 2em;
  margin-top: 2%;
  margin-bottom: 2%;
  filter: drop-shadow(2px 2px 1px white);
}

#banner {
  width: 100%;
  background-image: url("../pix/comkurs.jpg");
  background-position: center;
  background-origin: border-box;
  background-clip: border-box;
  background-size: cover;

  text-align: center;
  border-bottom: 2px solid darkgray;
  box-shadow: 1px 0px 3px 1px gray;
}

/*╔═════════════╗
    ║  Die SUCHE  ║
    ╚═════════════╝*/

#refCodeEingabeForm {
  border: 2px #F1F3F4 solid;
  padding: 6px;
  background-color: white;
  border-radius: 40px;
  font-size: small;
  padding-left: 2em;
  padding-right: 2em;
  display: inline-block;
  position: absolute;
  left: 50px;
  top: 20px;
  z-index: 8;
}

#refEingabeFeld {
  border: 1px solid white;
  font-size: medium;
  font-family: "Lucida Console", Monaco, monospace;
  background: none;
  width: 4em;
  transition: width 1s;
  float: right;
  height: 2em;
}

#refEingabeFeld:focus {
  width: 15em;
  transition: width 1s;
  height: 2.2em;
}

#refEingabeBeschriftung {}

#refEingabeIconLupe {
  height: 2.2em;
  float: left;
}

/*═════════════════════════════════════*/
/* Hauptnavigation                     */

#hauptnavigation {
  margin: 0;
  padding: 0;
  background-color: #3c375d;
  text-align: center;
}

.hauptnavibutton {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: 1.9em;
  font-family: "Arial Black", Arial, Verdana, cursive;
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-top: 10px;
  padding-bottom: 10px;
}

.hauptnavibutton:hover {
  background: #28324e;
}

#BackButtonDiv {
  text-align: right;
  border: none;
  padding-top: 1em;
  width: 90%;
  margin: auto;
}