body {
    margin: 0;
    padding: 0;
    background-color: black;
    font-family: Arial, Tahoma, sans-serif;
    color: white;
}

.btn {
    padding: 10px 16px;
    border: 0 none;
    letter-spacing: 1px;
}

.btn:focus, .btn:active:focus, .btn.active:focus {
    outline: 0 none;
}

.btn-primary {
    background: none;
    border: 2px #98804b solid;
    box-shadow: none !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
    background: none;
    font-weight: bold;
    border: 2px #98804b solid;
}

.btn-primary:active, .btn-primary.active {
    background: #98804b !important;
    font-weight: bold;
    border: 2px #98804b solid !important;
}

#loader {
    height: 100vh;
}

#main {
    opacity: 0;
    transition: opacity 1s;
    background-color: black;
}
#main.fade {
    opacity: 1;
}


.position {
    display: grid;
    grid-template-columns: auto max-content;
    grid-template-areas: "position_name position_cost";
    align-items: end;
    gap: 5px;
    line-height: 2;
  }
  
.position_name {
  grid-area: position_name;
  position: relative;
  overflow: hidden;
}

.position_name::after {
  position: absolute;
  content: " . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . "
    ". . . . . . . . . . . . . . . . . . . . . . . ";
  text-align: right;
}

.position_cost {
  grid-area: position_cost;
  font-weight: bold;
}

.qrcode canvas {
  display: none;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}

.hidden {
  display: none;
}
