/* CSS Styles fÃ¼r alle GerÃ¤te (KÃ¶nnen spÃ¤ter durch spezifische Einstellungen Ã¼berschrieben werden)

   Die Idee ist, das Hier alle vorhanden Styles auftauchen (ggf. auch ohne Inhalt)
   Diese kÃ¶nnen dann im SInne der Vererbung in den gerÃ¤tespezifischen CSS Dateien Ã¼berschrieben
   oder erweitert werden
*/


/* Hauptseite */
body {
  background-color: #8f8f8f;
  font-family: Arial, Tahoma, Geneva, sans-serif;
  font-size: 14px;
}

/* Kopf Bereich */
header {
  float: left;
  padding: 0;
  color: white;
  width: 100%;
  background-color: white;
}

header .header-title {
  background: url(../view/img/main_background.png?s=f6160004498e55b0507e283a105d1543332abfdf) repeat-x fixed 0 0;
  background-position: top left;
  width: 100%;
  z-index: 999;
  border-bottom: 3px solid black;
}

header .header-title h1 {
  text-align: center;
  color: transparent;
  font-size: 40pt;
  padding-top: 2px;
  margin: 0;
  visibility: hidden;
}
/*
  header .header-title h2 {
    text-align: center;
    font-size: 28px;
    font-weight: bolder;
    margin: auto;
  }
*/

/* Center the logo of Resy*/
header .resylogo {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

header .header-title h3 {
  visibility: hidden;
  height: 0;
}

header .header-title img {
  align-items: center;
}

/* Ausgabe des Menues */

nav {
  /* Rahmen um das Menue */

  height: auto;
  width: 100%;
  padding: 0;
  float: left;
  background-color: black;
}

nav ul {
  /* Listen Elemenet ohne Bullet Points anzeigen */
  list-style-type: none;
  display: flex;
  text-decoration: none;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Listen Menu ohne Unterstreichung auf. */
nav ul li a:hover,
nav ul li a:focus {
  text-decoration: none;
  color: antiquewhite;
}

/* design des Elemente <a></a> */
nav ul li a {
  color: white;
  font-size: 19px;
  padding: 7px 5px;
}

/*
nav .action {
  Eintrag im Hauptmenu, der diket eine Action aufruft
  position: relative;
  display: inline-block;
  color: white;
  margin: 0;
  padding: 8px 20px;
}

*/
/* sorgt fÃ¼r die Positionierung der einzelnen MenÃ¼punkte */

nav ul li.item {
  position: relative;
  width: auto;
  padding: 20px 20px 20px 20px;
  text-align: center;
}

/* fÃ¼gt beim Ãberfliegen mit der Maus eine Farbe, Border und padding hinzu  */
nav > ul > li:hover,
nav > ul > li:focus {
  /*  color: #ad5c0a; */
  background-color: #ad5c0a;
}

nav a {
  /* Links im MenÃ¼ nicht als Link darstellen */
  color: white;
}

/* Dropdown menu design
* -------------------------------
* -------------------------------
*/
/*
nav .dropdown {

}
*/

nav .dropdown-content {
  /* UntermenÃ¼ zuerst ausgeblendet */
  display: none;
}
/* bringt die Dropdown-Liste unter dem MenÃ¼ erscheinen  */
nav ul li:hover .dropdown-content {
  display: block;
  position: absolute;
  background-color: black;
  margin-top: 20px;
  margin-left: -20px;
  border-top: 3px solid cyan;
  z-index: 1;
}

/* Dropdown vertikal erscheinen lassen*/
nav ul li:hover .dropdown-content ul {
  display: block;
  margin: 10px;
}
/* Gestaltung der einzelnen Elemente des UntermenÃ¼s*/
nav ul li:hover .dropdown-content ul li {
  width: 300px;
  padding: 10px;
  border-bottom: 1px solid white;
  border-radius: 0;
  text-align: left;
}

/* das letzte Element keinen unteren Rand hat */
nav ul li:hover .dropdown-content ul li:last-child {
  border-bottom: none;
}

/*die Standardfarbe des UntermenÃ¼elements auf WeiÃ Ã¤ndern. */
nav ul li:hover .dropdown-content ul li a {
  color: white;
  font-size: 17px;
}
/* die Farbe des UntermenÃ¼elements Ã¤ndern, wenn :hover */
nav ul li:hover .dropdown-content ul li a:hover {
  color: lightgray;
}

/***der benutzer icon (Menu) */
nav ul li a .resyBenutzerName{
  font-size: 17px;
  font-weight:bold;
}


/*** ErmÃ¶glicht, dass die MenÃ¼s mit Icon nebeneinander angezeigt werden. */
nav img{
  float: left;
}

/*
nav .dropdown:hover {
  UntermenÃ¼ einblenden
  color: white;
  background-color: black;
}
*/

/*
 nav .dropdown:hover .dropdown-content {
   display: block;
 }
*/

/* Hautfenster */
.main {
  display: block;
  float: left;
  clear: both;
  background: /* url(../img/background-1.png?s=d98a447558b5c70a55d9def7cefff86891106dbc) no-repeat */ right bottom #fff;
  min-height: 380px;
  width: 100%;
  padding: 40px 0 140px 0;
}

/* macht die Tabelle responsive */

/* Fusszeile */
footer {
  float: left;
  color: white;
  font-size: 15px;
  background-color: black;
  width: 100%;
  height: 150px;
}

footer .logo {
  padding: 15px 15px;
  background-position: 50% center;
  height: 50px;
}

footer .VersionInfo {
  text-align: center;
}
footer .VersionInfo a {
  color: #ad5c0a;
}

footer .Impressum {
  padding-top: 10px;
  text-align: center;
}

footer .Impressum a {
  color: #ad5c0a;
}

footer .Copyright {
  text-align: center;
  font-size: 13px;
}

/* Rahmen vom Login Form */
.data .form_login {
  width: 350px;
  margin: auto;
}

.data .form_changepassword {
  margin: 0;
}

/* Eingabeformulare */
label {
  display: block;
  width: 15em;
}

fieldset {
  background-color: lightgrey;
  display: block;
  margin-left: 2px;
  margin-right: 2px;
  padding-top: 0.35em;
  padding-bottom: 0.625em;
  padding-left: 1em;
  padding-right: 1em;
}

legend {
  background-color: black;
  font-size: 15px;
  color: white;
  padding: 5px 10px;
}

/* Aus Ausklappbare Bereiche */
summary:focus {
  outline: none;
}
summary {

}
details {

}
/* Navigationselemente */

/* Ausgabe Tabellen mit Daten und Suchergebnissen */

.ResultTable {
  border-color: #333333;
  white-space: nowrap;
}


.ResultTable tr th,
.tablestatfooter td {
  background-color: #003673;
  color: white;
  border: none;
}
/* Betreff von Tabelle */
.ResultTable th {
  border: none;

  padding: 5px 5px;
  vertical-align: bottom;
}

.ResultTable td {
  padding: 5px 5px;
}

/* Responsive tabelle */
.ResultTable tbody {
  overflow-x: scroll;
  max-height: 48vh;
}

/* .ResultTable caption {
  visibility: hidden;
}
*/

/* Ausgabetabele scrollen Head und Footer stehen lassen */

/*
.ResultTable tbody
{
  display: block;
  overflow: scroll;
  max-height: 48vh;
}


.ResultTable thead, tfoot tr
{
  display:table;
  width:calc(100% - 1.5em);
  width: fit-content;
  table-layout:fixed;
}

.ResultTable tbody tr
{
  display:table;
  width:100%;
  table-layout:fixed;
}
*/


/* Design fÃ¼r die InfosBox*/

.infosBox {
  float: left;
  width: auto;
  padding: 10px;
  border: 1px solid black;
  margin: 5px;

}

#WheelsetViewWheels {
  padding-top: 10px;

}

/** Design (LADEPLATZ)*/

Form[name = "LadeplatzCreate"]{
  width: fit-content;
}



/* kleine Button in Tabelle */
.button_edit {
  background: url(./img/pencil.png?s=7943c8932f96f1616d29bc5ac28f12861e615318) no-repeat center;
  height: 18px;
  width: 18px;
  cursor: pointer;
  margin-right: 5px;
  padding: 0;
  overflow: hidden;
  color: transparent;
}

.button_edit:hover {
  color: transparent;
}

.button_delete {
  background: url(./img/garbage_can.png?s=b5c4806786f731af9e6b06e13b29542a8a4b6556) no-repeat center;
  height: 18px;
  width: 18px;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  color: transparent;
}

.button_delete:hover {
  color: transparent;
}



.button_csv {
  background: url(./img/floppy_disk.png?s=6c2fb8c2a6d987355f08059bc823d9b3c187a5c6) no-repeat center;
  height: 18px;
  width: 18px;
  cursor: pointer;
  margin-right: 5px;
  padding: 0;
  overflow: hidden;
  color: transparent;
}

.button_csv:hover {
  color: transparent;
}

.button_colselect {
  background: url(./img/table_selection_column.png?s=7c7dc0359a659e96e6ad0634cb65656e287b7b8d) no-repeat center;
  height: 18px;
  width: 18px;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  color: transparent;
}

.button_colselect:hover {
  color: transparent;
}

.ButtonSubmit {
  margin-top: 7px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bolder;
}

.ButtonReset {
  margin-top: 7px;
  margin-left: 15px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bolder;
}

/* Aktionsbuttons in der Radsatz Liste */

.button_cancel {
  background: url(./img/shopping_cart_off.png?s=7f9b71d15069133f3f13a57204c16e1d29e22b8f) no-repeat center;
  overflow: hidden;
  font-size: 12px;
  font-weight: bolder;
  color: transparent;
  height: 24px;
  width: 24px;
  padding: 15px;
  background-color: snow;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  margin: 3px;
}
.button_cancel:hover {
  color: transparent;
}


.button_order_now {
  background: url(./img/shopping_cart_checkout.png?s=5d0475998446fc24c6b8482f30c79657601a3a3d) no-repeat center;
  overflow: hidden;
  font-size: 12px;
  font-weight: bolder;
  color: transparent;
  height: 24px;
  width: 24px;
  padding: 15px;
  background-color: snow;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  margin: 3px;
}
.button_order_now:hover {
  color: transparent;
}

/* .button_order_cart {
  background: url(./img/add_to_shopping_cart.png?s=ba58a9b420cc2b9acd084222926e5c4ff293a6eb) no-repeat center;
  margin: 3px;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 12px;
  font-weight: bolder;
} */

.button_order_cart {
  background: url(./img/add_to_shopping_cart.png?s=ba58a9b420cc2b9acd084222926e5c4ff293a6eb) no-repeat center;
  overflow: hidden;
  font-size: 12px;
  font-weight: bolder;
  color: transparent;
  height: 24px;
  width: 24px;
  padding: 15px;
  background-color: snow;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  margin: 3px;
}
.button_order_cart:hover {
  color: transparent;
}

.button_remove_order {
  background: url(./img/garbage_can.png?s=b5c4806786f731af9e6b06e13b29542a8a4b6556) no-repeat center;
  height: 18px;
  width: 18px;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  color: transparent;
}

.button_remove_order:hover {
  color: transparent;
}


/* Warenkorb */
.cart_counter {
  display: block;
  width: 20px;
  position: absolute;
  top: 0px;
  left: 90%;
  font-size: smaller;
  border-style: solid;
  border-radius: 10px;
  border-color: lightblue;
  background-color: lightblue;
  color: black;
  text-align: center;
}


