html, body {
  width: 100%;
  height: calc(100% - 4px);
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-family: calibri;
  cursor: default;
  background-attachment: fixed;
  background-position: 220px 120px, center top;
  background-image: url(../art/background2.png), url(../art/background.png);
  background-size: 1500px, contain;
  background-repeat: no-repeat, repeat;
}
A {
  text-decoration: none;
}
A:link,A:visited {
  color: #000;
}
A:hover {
  color: maroon;
}
h1 {
  text-shadow: 3px 3px 2px rgba(0,0,0,.4);
  margin: 5px;
  color: #063b7f;
  font-size: 40px;
  height: 50px;
  text-align: center;
  letter-spacing: .1em;
  font-weight: bold;
  -webkit-text-stroke: 1px rgb(0, 0, 0);
}
h2 {
  color: #000;
  font-size: 30px;
  padding: 0;
  margin: 4px;
  height: 40px;
  text-align: center;
}
.zaobleni {
  border-radius: 20px;
}
.scroller::-webkit-scrollbar{
  width: 5px;
  height: 10px;
  background-color: silver;
}
.scroller::-webkit-scrollbar-thumb{
  background-color: gray;
}
.scroller{
  overflow-y: scroll;
  scrollbar-color: gray transparent;
  scrollbar-width: thin;
  overflow-y: auto;
  overflow: -moz-scrollbars-vertical;
}
div#loading {
  font-weight: bolder;
  position: fixed;
  top: 200px;
  left: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loader {
  position: absolute;
  top: 0;
  left: calc(50% - 100px);
  border: 1px  transparent;
  border-top: 10px solid #063b7f;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
div#loaded1,div#loaded2,div#loaded3 {
  display: none;
}
div.main {  
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 8px;
  margin: 0px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
}
div.top, div.middle, div.bottom, div.successok {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
div.top, div.bottom {  
  background-color: #063b7f;
  color: #FFF;
  box-shadow: rgba(0,0,0,1) 2px 3px 3px 0;
  border-radius: 30px 10px 20px 10px;
  background-image: url(../art/background3.png);
}
div.successok {
  background-color: #26ff00;
}
div.middle {
  height: calc(100% - 110px);
}
div.logo {
  height: 80px;
  margin: 0px 0px 0px 10px;
}
div.top_right {
  text-align: right;
  width: 600px;
  position: absolute;
  right: 12px;
  top: 8px;
}
div.top_right_element {
  margin: 4px 4px 2px 0px;
}
div.left, div.right {
  height: calc(100% - 10px);
}
div.left {
  position: relative;
  left: -20px;
  margin-top: 6px;
  width: 16px;
  overflow-x: visible;
}
div.right {
  width: calc(100% - 20px);
}
@media (min-width: 1201px) {
  div.left {
    position: relative;
    left: -20px;
    margin-top: 6px;
    width: 300px;
    overflow-x: visible;
  }
  div.right {
    width: calc(100% - 290px);
  }
  h1.h1, h2.h2{
    margin-right: 290px;
  } 
} 
div.page {
  height: calc(100% - 55px);
  padding: 0px 4px 0px 4px;
}
div.bottom {
  height: 30px;
  overflow-y: hidden;
  align-items: center;
}
div.bottom_text {
  position: absolute;  
  right: 16px;
  bottom: 11px;
  width: 500px;
  text-align: right;
}
div.app_time {
  position: absolute;
  left: 20px;
  bottom: 11px;
  color: #686868;
  width: 500px;
}
@keyframes fadeOut{
  from {
    opacity: 1;
  } to {
    opacity: 0;
  }
}
div.requestok {
  background: linear-gradient(
    to right,
    rgba(0, 255, 0, 0) 20%,
    rgba(0, 255, 0, 1) 30%,
    rgba(0, 255, 0, 1) 70%,
    rgba(0, 255, 0, 0) 80%
  );

  width: 100%;
  height: 100%;
}
div.requestok_text {
  margin-top: 1px;
  color: #000000;
  text-align: center;
  font-size: 22px;
}
div.notification {
  background: linear-gradient(
    to right,
    rgba(0, 255, 0, 0) 10%,
    rgba(255, 0, 0, 1) 30%,
    rgba(255, 0, 0, 1) 70%,
    rgba(0, 255, 0, 0) 90%
  );
  width: 100%;
  height: 100%;
  display: none;
}
div.notification_text {
  margin-top: 2px;
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  cursor: pointer;
}
img.disabled {
  cursor: not-allowed;
}
img.icon {
  position: relative;
  top: 4px;
  height: 16px;
  width: 16px;
  margin: 0px 4px 0px 4px;
}
