.navbar-nav > .nav-item {
    padding: 0 3px;
    font-size: 1.1rem;
}

.navbar-brand {
    padding-top: 0;
    padding-bottom: 0;
}

.navbar {
    /*background-color: rgb(187, 213, 237);*/
    border-bottom: 1px solid hsla(0, 0%, 0%, 0.1);
    padding: 0.3rem 1rem;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, 0.6);
}

.navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, 0.8);
}

body {
    font-family: Roboto, Arial, sans-serif;
    background-color: #f1f3f5;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1 0 auto;
}

html {
    height: 100%;
}

.card {
    margin-top: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);
    border-top: 5px rgb(187, 213, 237) solid;
}

.list-group {
    border: 1px hsla(0, 0%, 0%, 0.2) solid;
    /*box-shadow: 0 2px 6px 0 hsla(0, 0%, 0%, 0.2);*/
}

.list-group-item {
    border: 0;
}

.list-group-item:nth-child(odd) {
    background-color: hsl(0, 0%, 95%);
}

.card-header {
    border-bottom: 0;
}

.list-group-item > a {
    color: hsla(0, 0%, 0%, 0.6);
}

.list-group-item > a:hover {
    color: hsla(0, 0%, 0%, 0.8);
    text-decoration: none;
}

.flags {
    float: right;
}

.not-available {
    filter: grayscale(1) opacity(0.4);
}

.footer {
    width: 100%;
    background-color: hsla(0, 0%, 0%, 0.7);
    margin-top: 2rem;
    padding: 1rem;
    text-align: center;
    flex-shrink: 0;
}

.footer-link {
    color: hsla(0, 0%, 100%, 0.61); /* 0.61, because 0.6 doesn't pass the accessibility test, and I wanted that sweet 100 score :) */
}

a {
    color: #0062ff;
}

a.footer-link:hover {
    color: hsla(0, 0%, 100%, 0.8);
    text-decoration: none;
}

.heading {
    padding-top: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px rgba(0, 0, 0, 0.2) solid;
    font-size: 1.5rem;
    font-weight: bold;
}

.small-heading {
    font-size: 1.05rem;
}

.sidebar {
    list-style: none;
}

.sidebar-item {
    margin: 0.5rem 0;
    padding: 0.4rem;
    border-radius: 5px;
}

.sidebar-item:hover {
    background-color: hsla(0, 0%, 0%, 0.05);
}

.sidebar > a {
    color: hsla(0, 0%, 0%, 0.6);
}

.sidebar > a:hover {
    color: hsla(0, 0%, 0%, 0.8);
    text-decoration: none;
}

@media (min-width: 768px) and (min-height: 600px) {
    .sidebar {
        position: sticky;
        top: 20px;
    }
}

.selected {
    background-color: hsla(0, 0%, 0%, 0.1) !important;
    color: hsla(0, 0%, 0%, 1) !important;
}

.alert-warning {
    border-left: 4px solid orange;
}

.alert-info {
    border-left: 4px solid #54b9da;
}

.alert-secondary {
    border-left: 4px solid darkgray;
}

iframe.map {
    border: none;
    max-width: 100%;
}

.file-path {
    font-size: initial;
    color: inherit;
    background-color: lightgray;
}

.list-disc {
    list-style: disc;
}

.list-square {
    list-style: square;
}

.list-roman {
    list-style: lower-roman;
}

.modal-header {
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
}

.justify-content-evenly {
    justify-content: space-evenly;
}

.buttons-grid {
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    justify-content: space-evenly;
}

.positions-grid {
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    justify-content: space-evenly;
}

.modes-grid {
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    justify-content: space-evenly;
}

.touchscreen-grid {
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    justify-content: space-evenly;
}

.tickets-grid {
    display: grid;
    grid-template-columns: 100%;
    justify-items: center;
    justify-content: space-evenly;
}

@media (min-width: 768px) {
    .buttons-grid {
        grid-template-rows: auto auto;
        grid-template-columns: auto auto auto;
    }

    .positions-grid {
        grid-template-rows: repeat(4, auto);
        grid-template-columns: repeat(2, auto);
    }

    .modes-grid {
        grid-template-rows: auto auto;
        grid-template-columns: auto auto;
    }

    .touchscreen-grid {
        grid-template-rows: auto auto;
        grid-template-columns: auto auto;
    }

    .tickets-grid {
        grid-template-rows: repeat(4, auto);
        grid-template-columns: repeat(2, auto);
    }
}

@media (min-width: 992px) {
    .positions-grid {
        grid-template-rows: auto auto;
        grid-template-columns: repeat(4, auto);
    }

    .tickets-grid {
        grid-template-rows: auto auto;
        grid-template-columns: repeat(4, auto);
    }
}

.text-lighter {
    color: hsla(0, 0%, 0%, 0.6);
}

table.vertical-center-children td {
    vertical-align: middle;
}

td.vertical-center {
    vertical-align: middle;
}

a.no-underline:hover {
    text-decoration: none;
}

.expand-button-text {
    font-size: 1.1rem;
    font-weight: 400;
}

.max-w-100 {
    max-width: 100%;
}

.max-w-30rem {
    max-width: 30rem;
}

.built-in {
    font-weight: 500;
}

.optional {
    color: hsla(0, 0%, 0%, 0.6);
}

.section-heading {

}

@media (min-width: 1200px) {
    .mx-xl-10 {
        margin-right: 10rem;
        margin-left: 10rem;
    }
}

.modal-dialog {
    max-width: fit-content;
}

.alert pre {
    margin-bottom: 0;
}

.card pre {
    margin-bottom: 0;
}

kbd {
    overflow-wrap: break-word;
}
