/* Basic Classes */
.display-none {
    display: none;
}

.row {
    flex-direction: row;
}

.column {
    flex-direction: column;
}

.flex-container {
    display: flex;
}

.grow {
    flex-grow: 1;
}

.horizontally-centered {
    justify-content: center;
}

.hidden {
    visibility: hidden;
}

/* General Classes */
.main {
    margin-top: 10px;
    padding-left: 25px;
    padding-right: 20px;
}

.title {
    margin: 10px 0px;
    font-size: 18px;
}

Button {
    cursor: link;
}

.anchor {
    color: #2196F3;
    padding: 0px;
    margin: 0px;
    background-color: transparent;
    border-width: 0px;
}

.classic-button {
    padding: 7px;
    margin-top: 10px;
    height: 30px;
}

Label {
    white-space: normal;
}

.alert-label {
    color: red;
}

.footer {
    position: absolute;
    margin: 20px 10px 0px 10px;
    bottom: 5px;
}

#privacyStatement {
    align-self: flex-start;
}