.html-fare {
    background: #FFFFFF;
}

body {
    font-size: 11pt;
}

/* FONT */
body {
    font-family: "Ubuntu", sans-serif;
}

body .ui-widget, input {
    font-family: "Ubuntu", sans-serif;
}

body select {
    font-family: "Ubuntu", sans-serif;
}

body .ui-widget {
    font-size: 1rem;
}

body .ui-commandlink, body .ui-link, a {
    color: #014171;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1em;
}

body .ui-commandlink:hover, body .ui-link:hover, a:hover {
    color: #014171;
    text-decoration: none;
}

.colored-text, h1, h2, h3 {
    color: #014171;
}

/* primefaces ui-card */
.ui-card-header {
    background-color: #00315a;
    border: 1px solid #00315a;
    color: #ffffff;
    border-radius: 0;
}

.ui-card-body {
    background-color: #f8f9fa;
}

body .ui-button {
    background-color: #00315a;
    border: 1px solid #00315a;
    color: white;
    border-radius: 0;
}

body .ui-button-text {
    padding: 0.4rem 1.4rem !important;
}

body .ui-button.ui-state-hover {
    background-color: #336699;
    border: 1px solid #336699;
    color: white;
}

body .ui-button.ui-state-active {
    background-color: #00315a;
    box-shadow: 0 0 0.2em 0.2em #a6d5fa;
    color: white;
}

.wrapper {
    background-repeat: no-repeat;
    background-color: #FFFFFF;
    box-shadow: 0 1px 30px 0 rgba(0, 0, 0, 0.3);
}

main {
    background: none;
}

#title-text {
    color: #336699;
    font-size: 1.2em;
    font-weight: bold;
}

#user-info {
    color: #014171;
    font-size: 1.2em;
    font-weight: bold;
}

#user-info a {
    text-decoration: none;
}

#user-info a:hover {
    text-decoration: underline;
}

nav {
    background-color: #dbe5f9;
}

nav a {
    color: #014171;
    font-size: 1.2em;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

nav a:hover {
    text-decoration: underline;
}

nav .home i {
    font-size: 1.2em;
    color: #FFFFFF;
}

nav .home:hover i {
    color: #014171;
}


footer {
}

footer a {
    font-size: 1.2em;
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}

#profile-hint {
    color: #0373b5;
    background-color: lightgray;
}

/* Navi-Steps */
.step-incomplete-background {
    color: white;
}


/****** radio buttons ***********/
.grid-radio td {
    padding: .5rem;
    margin-right: 2rem;
}
.hidden {
    display: none;
}
.visible {
    display: block;
}
.responsive-radio  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    grid-column-start: auto;
}

@media (max-width: 768px) {
    .responsive-radio  {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .responsive-radio  {
        grid-template-columns: repeat(2, 1fr);
    }
}

.responsive-radio > *:first-child{
    grid-column: 1;
}