#wahlContainer {
    text-align: center;
    font-size: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* COLUMN */

.column {
    display: inline-block;
    width: 650px;
    vertical-align: top;
    font-size: initial;
    margin-top: 20px;
    position: relative;
}
.bigHr {
    margin-bottom: 10px;
}

/* HEADER */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 690px;
    height: 50px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
    font-size: inherit;
    z-index: 3;
}
#logOutButton {
    position: absolute;
    left: 10px;
    top: 10px;
    height: 30px;
}
#loggedInAs {
    position: absolute;
    left: 120px;
    top: 6px;
    font-size: 16px;
    margin: 0;
    line-height: 18px;
    text-align: left;
}
header h1 {
    margin: auto;
    font-size: 26px;
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-weight: normal;
    white-space: nowrap;
}
#continueWahl {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 30px;
}
#continueWahl:hover:enabled {
    background: lightskyblue !important;
}
#saveIncompleteWahl {
    position: absolute;
    right: 120px;
    top: 10px;
    height: 30px;
}
#saveIncompleteWahl:disabled {
    opacity: 0.25 !important;
}
@keyframes jump {
    0% {transform: scale(1);}
    50% {transform: scale(1.125);}
    100% {transform: scale(1);}
}

/* SUBJECTS */

#subjectSelection > h1 {
    margin: 0;
    font-size: 24px;
    text-align: center;
    /*text-decoration: underline;*/
    margin-bottom: 5px;
    /*margin-right: -10px;*/
}
#subjectSelection > h2 {
    margin: 0;
    font-size: 12px;
    text-align: center;
    color: rgb(144, 174, 238);
    margin-bottom: 5px;
}
.subjectColumnContainer {
    text-align: center;
    font-size: 0;
}
.subjectColumn {
    width: 200px;
    display: inline-block;
    vertical-align: top;
    margin: 0;
    margin-right: 10px;
    font-size: 16px;
}
.subjectColumn:last-child {
    margin-right: 0;
}
.subjectColumn h2 {
    margin: 0;
    font-size: 12px;
    opacity: 0.5;
    margin-top: 10px;
}
.subjectColumn > div > div {
    position: relative;
}
.subjectColumn > div > div > div {
    height: 40px;
    display: flex;
    justify-content: center; /* align horizontal */
    border: 1px solid rgb(196, 196, 196);
    line-height: 40px;
    background: white;
    transition: all 0.15s;
    cursor: pointer;
    position: relative;
    user-select: none;
}
.subjectColumn > div > div:first-child > div {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}
.subjectColumn > div > div:last-child > div {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.subjectColumn > div > div > div > p {
    pointer-events: none;
    position: absolute;
    z-index: 2;
    text-align: center;
    width: 100%;
    margin: 0;
    font-size: 12px;
    bottom: 1px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.15s;
    color: rgba(0, 0, 0, 0.75);
    line-height: normal !important;
}
.subjectColumn > div > div:not(:last-child) {
    margin-bottom: -1px;
}
.subjectColumn > div > div > div:hover {
    box-shadow: -6px 6px 5px rgba(0, 0, 0, 0.1);
    border-color: black;
    background: #e8e8e8;
    z-index: 2;
    transform: scale(1.05);
}
.problemsContainer {
    background: rgba(0, 0, 0, 0.75);
    border-radius: 5px;
    color: white;
    font-size: 12px;
    text-align: left;
    padding: 5px;
    box-sizing: border-box;
    display: none;
    width: 175px;
    position: absolute;
    top: 0;
    left: 0;
    margin: 10px;
    z-index: 4;
    pointer-events: none;
}
.problemsContainer ul {
    margin: 0;
    padding-left: 20px;
}

#subjectSelection {
    width: 650px;
}
#subjectSelection hr:last-of-type {
    width: 600px;
    margin: 20px auto;
    margin-bottom: 10px;
}

/* LEFT */ 

#info {
    width: 350px;
    padding-left: 20px;
}
#info h2 {
    margin: 0;
    font-size: 24px;
    text-align: center;
    /*text-decoration: underline;*/
}
#info h3 {
    margin: 0;
    font-size: 12px;
    text-align: center;
    font-weight: normal;
    color: gray;
    margin-bottom: 10px;
}
#info hr {
    width: 300px;
    margin: 20px auto;
}
#requirements {
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
}
#requirements > div {
    padding: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.137);
    transition: all 0.2s;
    position: relative;
}
#requirements > div:last-child {
    border-bottom: none;
}
#requirements > div * {
    transition: all 0.25s;
}
#requirements > div span {
    font-size: 14px;
    padding-right: 20px;
}
#requirements > div svg {
    position: absolute;
    left: -30px;
    display: block;
    height: 24px;
    width: 24px;
    top: 6px;
    opacity: 0.35;
    fill: rgb(119, 223, 119);
}

/* FINISH WAHL */

#finishWahlPopup > div > section {
    font-size: 0;
}
#finishWahlPopup > div > section div {
    font-size: 14px;
    width: 50%;
    display: inline-block;
    vertical-align: top;
}
#finishWahlPopup > div > section div h2 {
    font-weight: normal;
    margin: 0;
    font-size: 16px;
    text-align: center;
}
#finishWahlPopup > div > section div ul {
    margin: 0;
}
#finishWahlPopup > div > section div ul li {
    line-height: 14px;
    margin-bottom: 5px;
}
#finishWahlPopup > div > hr {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 10px;
}

#finishWahlPopup > div table {
    width: 95%;
    font-size: 14px;
    margin: auto;
}
#finishWahlPopup > div table tr {
    vertical-align: top;
    border-collapse: collapse;
}
#finishWahlPopup > div table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
#finishWahlPopup > div table td:first-child {
    width: 40%;
    text-align: right;
}