:root {
  --background-color: #f0eeee;
  --font-color: #555;
  --line-color: #bfbfbf;
  --button-background-color: #e2e2e2;
  --button-color: #002d88;
}

body {
  background-image: linear-gradient(to left top, #30b7ff, #32a3ea, #338ed6, #337bc0, #3268ab, #2360ae, #1657b0, #0e4eb1, #0049c9, #1841de, #3e31f1, #6300ff);
  margin-top: 2cm;
  height: 100vh;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.wrap {
  width: 25cm;
  margin: 0 auto;
}

page {
  background-color: white;
  position: relative;
  display: block;
  margin: 0 auto;
  margin-top: 0.5cm;
  box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
  width: 29.7cm;
  height: 21cm;

}

.note-amount{
  position: absolute;
  display: flex;
  font-size: 9mm;
  justify-content: right;
  align-items: end;
  width: 4.7cm;
  vertical-align: baseline;
}

.note1{
  top: 50mm;
  left: 16mm;
}

.note2{
  top: 50mm;
  left: 151mm;
}

.note3{
  top: 130mm;
  left: 16mm;
}

.note4{
  top: 130mm;
  left:151mm;
}

img.layout {
  position: relative;
  margin-top: 20mm;
  margin-left: 6mm
}

img.qrcode {
  width: 80mm;
}

#qrcode1 {
  position: absolute;
  top: 25mm;
  left: 65mm;
}

#qrcode2 {
  position: absolute;
  top: 25mm;
  left: 200mm;
}

#qrcode3 {
  position: absolute;
  top: 106mm;
  left: 65mm;
}

#qrcode4 {
  position: absolute;
  top: 106mm;
  left: 200mm;
}

.button {
  background-color: #002d88;
  color: white;
  border: 2px solid white;
  width: 10cm;
  height: 70px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}

.button:hover {
  background-color: #0f1015;
  color: white;
}

input[type=text] {
  padding: 12px 20px;
  border-radius: 5px;
  border: 2px solid #000000; 
  background-color: white;
  color:black;
  font-size: large;
  font-weight: bold;
  height: 5mm;
  text-align: right;
}

.flex-row {
  display: flex;
  justify-content: center;
  gap: 3mm;
  margin-top: 5mm;
  margin-bottom: 5mm;
}

.denomination {
  display:flex; 
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: white;
}

.togglesBox {
  display: flex;
  gap: 20px;
}

.toggles {
  width: fit-content;
  border: solid 1px black;
  padding: 3px;
  background-color: var(--line-color);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
}

.toggles input {
  display: none;
}

.toggles label {
  display: flex;
  background: var(--line-color);
  padding: 8px 10px;
  font-family: sans-serif;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s;
}

.toggles label:last-of-type {
  border-right: 0;
}

.toggles label:hover {
  background: var(--background-color);
}

.toggles input:checked+label {
  color: white;
  background: var(--button-color);
}

.toggles img {
  height: 30px;
}

input[type="file"]::file-selector-button {
  background-color: #002d88;
  color: white;
  border: 2px solid white;
  width: 5cm;
  height: 70px;
  font-size: 25px;
  font-weight: bold;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.5s;
}

input[type="file"]::file-selector-button:hover {
  background-color: #0f1015;
  color: white;
}

@media print {

  /* @media screen and (max-width: 1300px) { */
  body {
    background-image: none;
    padding: 0;
    height: 0;
    margin: 0;
  }

  /* img{margin-top: 0;} */

  page {
    background-color: transparent;
    display: block;
    margin: 0;
    box-shadow: none;
    width: auto;
    height: auto;
  }

  .wrap {
    display: none;
  }
}
