html, body {
  font-family: 'Arial CE', 'Helvetica CE', Arial, helvetica, sans-serif;
  font-size: 12px;
  color: #000;
  border: 0;
  margin: 5px;
  padding: 0;
}

textarea {
  border: 1px solid #000066;
  width: 400px;
  height: 80px;
}

.inputBox {
  border: 1px solid #000066;
}

.inputBoxDays {
  border: 1px solid #000066;
  width: 38px;
}

select {
  border: 1px solid #000066;
}

.btnBack {
  margin-left: 80px;
  background-color: 1px #f0f0f0 solid;
  color: #000088;
  font-weight: bold;
}

.btnOdeslat {
  margin-left: 120px;
  background-color: 1px #f0f0f0 solid;
  color: #000088;
  font-weight: bold;
}

.fieldZakaznik {
  border: 1px solid #000066;
  background-color: #f0f0f0;
  width: 490px;
  height: auto;
  margin-left: 10px;
  margin-top: 10px;
  padding: 5px 5px 5px 5px;
}

.fieldVyzvednu {
  border: 1px solid #000066;
  background-color: #f0f0f0;
  width: 490px;
  height: auto;
  margin-left: 10px;
  margin-top: 10px;
  padding: 5px 5px 5px 5px;
}

.fieldOdevzdam {
  border: 1px solid #000066;
  background-color: #f0f0f0;
  width: 490px;
  height: auto;
  margin-left: 10px;
  margin-top: 10px;
  padding: 5px 5px 5px 5px;
}

.fieldObjednavka {
  border: 1px solid #000066;
  background-color: #f0f0f0;
  width: 490px;
  height: auto;
  margin-left: 10px;
  margin-top: 10px;
  padding: 5px 5px 5px 5px;
}

.fieldRetro {
  border: 1px solid #000066;
  background-color: #f0f0f0;
  width: 490px;
  height: auto;
  margin-left: 10px;
  margin-top: 10px;
  padding: 5px 5px 5px 5px;
}

legend {
  font-weight: bold;
  color: #000080;
}

h1 {
  font-size: 16px;
  color: #005C9B;
}

h1.welcome {
  font-size: 22px;
  color: #FFA500;
}

h2 {
  font-size: 12px;
  color: #FFA500;
}

.obj {
  font-size: 18px;
}

.redStar {
  font-weight: bold;
  color: #FF0000;
}

.thumbnail{
position: relative;
z-index: 0;
}

.thumbnail:hover{
background-color: transparent;
z-index: 50;
}

.thumbnail span{ /*CSS for enlarged image*/
position: absolute;
background-color: lightyellow;
padding: 5px;
left: -1000px;
border: 1px dashed gray;
visibility: hidden;
color: black;
text-decoration: none;
}

.thumbnail span img{ /*CSS for enlarged image*/
border-width: 0;
padding: 2px;
}

.thumbnail:hover span{ /*CSS for enlarged image on hover*/
visibility: visible;
top: 0;
left: 60px; /*position where enlarged image should offset horizontally */

}

.ErrorField {
    border-color: #D00;
    background: #FFFFFE;
}

span.ValidationErrors {
    display: inline-block;
    font-size: 12px;
    color: #D00;
    padding-left: 10px;
    font-style: italic;
}

.cenaCelkem {
  font-size: 14px;
  font-weight: bold;
  color: #FF0000;
}

#orderTable table {
  border: 1px dotted #000000;
  margin: 0 0 70px 0;
}

#orderTable {
  margin-top: 20px;
}

/* Tooltip container */
.tooltip {
  position: relative;
  display: inline-block;
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;

  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;

  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}