@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Roboto, Verdana, Arial, sans-serif;
  width: 100vw;
  max-height: 100vh;
  font-size: 1.5em;
  background-color: #fff;
  overflow: hidden;
  position: fixed;
}
#bodycover {
  width: 100vw;
  height: 100vh;
  background-image: url(../img/wallpaper1.png);
  background-size: cover;
  background-position: left;
  background-color: rgba(255 , 255, 255, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
/*   z-index: -1; */
}
header {
  display: flex;
  justify-content: center;
  align-items: center;
}
table {
  text-align: center;
}
#datetime {
  width: 50vw;
  text-align: right;
  font-size: 0.8em;
}
td {
  padding: 0 25px;
  border-style: solid;
}
.vishidden {
  display: none;
  visibility: hidden;
}
h1 {
  margin: 20px;
}
main {
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#placeholderdatetime {
  font-size: 1.0em;
}
section#customer {
  width: 51vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.3);
  border: solid 1px #000;
  border-radius: 15px;
  padding: 5px;
}
label {
  font-size: 1.0em;
  width: 50vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0 0 0;
}
input {
  font-size: 0.9em;
  width: 30vw;
  margin: 5px 0 0 0;
  padding: 0 0 0 5px;
/*   border: dotted 1px;
  border-radius: 3px; */
  border: none;
  background: none;
}
select {
  width: 30vw;
  font-size: 0.9em;
  /*   border: dotted 1px;
  border-radius: 3px; */
  border: none;
  background: none;
  padding: 0;
}
option {
  font-size: 0.9em;
  width: 30vw;
  margin: 5px 0 0 0;
  padding: 0;
  /*   border: dotted 1px;
  border-radius: 3px; */
  border: none;
  background: none;
}
option .centered {
  font-size: 0.9em;
  text-align-last: center;
  -ms-text-align-last: center;
  -moz-text-align-last: center;
}
#btns {
  width: 50vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 5px 0 0 0;
}
button {
  font-size: 0.9em;
  width: 150px;
  height: 35px;
  border: solid 2px;
  border-radius: 10px;
  background-color: #fb0;
  margin-top: 20px;
}
footer {
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
#result {
  width: 50vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 15px 0 0 0;
  font-size: 1.25em;
  font-weight: bold;
  color: #e00;
}
/* ---------- Media querie screen ----------- */
@media (orientation: portrait) {
  #bodycover {
    width: 100vw;
  }
}
/* ---------- Media querie print ----------- */
@media print {
  @page {
    size: 145mm 210mm;
  }
  .noprint {
    display: none;
  }
  body, #bodycover, #result, main, footer, #btns, #datetime, label {
    width: 120mm;
    }
  h3 {
    font-size: 0.8em;
  }  
  #datetime {
    font-size: 0.6em;
  }
  section#customer {
    width: 125mm;
    margin:2mm;
    border-radius: 0;
    border: none;
    border-top: solid 1px #000;
    border-bottom: solid 1px #000;
/*     border: none; */
  }
  #placeholder {
    text-align: right;
  } 
  label {
    font-size: 0.7em;
  }
  input {
    padding: 0 0 0 5px; 
  }
  input, select, option {
    font-size: 1em;
  }
  input, select, option, #placeholder {
    width: 65%;
  }
  #result {
  font-size: 0.8em;
  }
  #result-title {
    width: 35%;
  }
}