body {
  background-color: #E6E6FA;
}

footer {
  position: fixed;
  bottom: 0;
  left:0;
  width: 100%;
  z-index:1000;

}

.dot {
  height: 50px;
  width: 50px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}

.dot-small {
  height: 25px;
  width: 25px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}


.infoMessage {
background-color: lightgreen;
text-align: center;
}


.alertMessage {
background-color: pink;
text-align: center;
}

fieldset {
  display: block;
  padding: 5px;
  border: 1px solid silver;
}

.tabUzivatel {
  text-align: right;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.blink_me {
  animation: blinker 1s linear infinite;
}

.blink_me2 {
  animation: blinker2 1s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

@keyframes blinker2 {
  50% {
    opacity: 0.4;
  }
}
