html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

h1 {
    margin-bottom: 0.75em;
}

/* ToDo: Farben nochmal mit Tobias abstimmen! */
.longines-blue-background {
    background-color: #003150;
    color: white;
}

#company-logo {
    height: 86px;
    width: auto;
}

/* Note: On small screens, show footer elements vertically aligned.
         On bigger screens, show them horizontally, but separated. */
#footer-items-container > span::after {
    content: " -";
}

#footer-items-container > span:last-child::after {
    content: "";
}

@media (max-width: 575px) {
    footer {
        padding: 20px 0;
    }

    footer > #footer-items-container {
        text-align: center;
        line-height: 30px;
    }

    #footer-items-container > span:first-child {
        display: block;
    }

    #footer-items-container > span:not(:first-child)::after {
        display: inline-block;
    }

    #footer-items-container > span:not(:first-child):not(:last-child)::after {
        margin-right: 20px;
    }

    #footer-items-container > span::after {
        content: "";
    }
}