main {
  /* Align to the center horizontally and vertically */
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100vh - 140px);
  padding: 0 36px;
    transition: opacity 0.4s ease;
}

main.fading {
  opacity: 0;
}

#question {
  font-size: 32px;
  text-align: center;
  margin-top: 0;
}

#group-list-1, #group-list-2 {
  margin-top: 32px;
  display: none;
  justify-content: center;
}

#group-list-2 {
  margin-top: 16px;
}

#or {
    text-align: center;
    margin: 8px 0 -6px;
}

#group-5 {
    width: fit-content;
    margin: 16px auto 0;
}

button {
  font-size: 18px;
  font-weight: bold;
  margin: 0 8px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 4px solid transparent;
  background: #0e1c3b;
  color: white;
}

button:hover {
  opacity: 0.92;
    cursor: pointer;
}

button:active {
  opacity: 0.8;
    cursor: pointer;
}

button.selected {
    border-color: #0e1c3b;
    background: #E9AB23;
    color: #0e1c3b;
}

#qlist-i-1 {
    margin-top: 32px;
    display: none;
    align-items: center;
    justify-content: center;
}
#qlist-min {
    display: none;
    text-align: center;
    margin-top: 8px;
    margin-bottom: 0;
}
#qlist-i-1 > * {
    display: block;
}

#qlist-all {
    margin-right: 12px;
}

.text-rbutton-container {
    margin-left: 12px;
}

input.text-rbutton {
    box-sizing: border-box;
    width: 92px;
    height: 56px;
    border: 4px solid #0e1c3b;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    font-size: 20px;
    padding: 0 8px;
    color: #0e1c3b;
    outline: none;
    margin-right: 0;
}

button.text-rbutton {
    box-sizing: border-box;
    margin-left: -4px;
    height: 56px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

#qlist-i-2 {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 32px;
}

#qlist-start-rand, #qlist-start-seq {
    margin-bottom: 12px;
}

.main-buttons {
    display: flex;
    margin: 32px auto 0;
}

#next {
    display: none;
}

#submit, #next {
    width: fit-content;
    opacity: 0.4;
    pointer-events: none;

    transition: all 0.2s ease;
}

#submit.available, #next.available {
    opacity: 1;
    pointer-events: all;

    background: #E9AB23;
    color: #0e1c3b;
}

.report-issue {
    padding: 4px 12px;
    font-size: 14px;

    background: #E9AB23;
    color: #0e1c3b;
}
