:root {
    --ia-light: #E6E6E6;
    --ia-dark: #4F4F4F;
    --ia-accent: #8F7CD0;
    --ia-font-heading: Futura, Trebuchet MS, Arial, sans-serif
}

body {
    background-color: black;
}

.app_body {
    overflow: hidden;
}

.app_body::before {
    z-index: -1;
    content: ' ';
    position: fixed;
    background: url('../img/infs-arc-svg-white.svg') no-repeat;
    opacity: 0.1;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-position: center center;
    background-size: 120%;
}


a {
    color: var(--ia-accent);
}

legend {
    font-size: 32pt;
    font-family: var(--ia-font-heading);
    color: var(--ia-light);
}

h1,
h2,
h3,
h4 {
    font-family: var(--ia-font-heading);
}

h1 {
    font-size: 26pt;
}

h3 {
    font-size: 20pt;
}

h4 {
    font-size: 16pt;
    margin-bottom: 1rem;
}

.info {
    text-align: left;
}

table {
    border-collapse: collapse;
}

table,
th,
td {
    border: 1px solid var(--ia-light);
}

.collapse-container {
    padding: 2rem 0;
}

.collapse-container .btn-block {
    width: 100%;
}

.btn {
    padding: 0.5rem 1rem;
}

.btn-primary,
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
    background-color: var(--ia-accent) !important;
    color: white;
    border: 1px transparent solid;
}

.btn:hover {
    filter: brightness(110%);
}

.btn:active {
    border-color: transparent !important;
    filter: brightness(90%);
}

.btn.disabled {
    background-color: transparent !important;
    border-color: var(--ia-dark);
    color: var(--ia-dark);
}

.app_body {
    background-color: transparent;
}

.app_row {
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--ia-dark);
    padding: 2rem 10%;
    border: solid;
    /* border-radius: 15px; */
    border-color: var(--ia-light);
    margin: 5px;
    margin-top: 20px;
}

.accordion_panel {
    margin-top: 20px;
}

.accordion_panel h2,
h3 {
    margin-bottom: 1rem;
}

.collapsed>.when-open,
.not-collapsed>.when-closed {
    display: none;
}

.pgm_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    max-width: 67%;
    text-align: left;
}

.pgm_row span {
    font-size: 18px;
}

/* .pgm_row span {
    display: flex;
    align-self: left;
} */

.footer {
    margin: 2rem 0rem;
    color: var(--ia-light);
}

.status_container {
    margin: 20px 0px;
}

progress {
    margin-bottom: 10px;
}

progress[value] {
    appearance: none;
    -webkit-appearance: none;
    height: 10px;
    width: 100%;
}

progress[value]::-webkit-progress-bar {
    background-color: var(--ia-light);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5) inset;
}

progress[value]::-webkit-progress-value {
    background-color: var(--ia-accent);
    border-radius: 2px;
    background-size: 100% 100%;
}

.log {
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 36px;
    background-color: black;
}

.log p {
    color: var(--ia-light);
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
}

.log .error {
    color: rgb(255, 40, 40)
}

label {
    font-size: 18px;
    font-weight: bold;
    margin-right: 8px;
}

select,
::picker(select) {
  appearance: base-select;
}
* {
  box-sizing: border-box;
}

select {
  border: 2px solid white;
  background: var(--ia-dark);
  padding: 10px;
  margin-left: 8px;
  min-width: 33%;
  transition: 0.4s;
  font-size: 16px;
}

select:hover,
select:focus {
  background: var(--ia-accent);
}

.module-select-label {
    font-size: 18px;
    font-weight: bold;
}
