
html {
    background-color: #F0F0F0;
}

body {
    background-color: #F0F0F0;
}

a, a:hover {
    color: #212529;
    text-decoration: none;
}

h6 {
    margin-top: 16px;
}

.primary-color {
    background-color: #112357;
}

.icon-colored {
    color: #112357;
}

.text-colored {
    color: #112357;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mini-contact-container {
    margin-top: 16px;
    padding: 0 16px;
}

.mini-contact {
    font-size: 0.7rem;
    opacity: 0.8;
    padding: 0;
    transition: 300ms;
}

.mini-contact:hover {
    opacity: 1;
}

#map-modal-map, #impressum-modal-map {
    height: 50vh;
    width: 100%;
}

#impressum-modal-map {
    margin: 32px 0;
}

@media (min-width: 767px) {
    .shadow-small {
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16),
        0 0 6px rgba(0, 0, 0, 0.24);
    }
}

#main {
    margin-top: 100px;
}

#content {
    padding: 0;
    background-color: #FFFFFF;
    margin-bottom: 30px;
}

.login-header {
    padding: 16px;
    color: #F0F0F0;
}

.login-body {
    padding: 16px;
}

.login-footer {
    padding: 0 16px;
}

@media (max-width: 768px) {
    .footer-link {
        font-size: 0.7rem;
    }
}

.footer-link {
    background-color: #FFFFFF;
    border: 1px solid #F0F0F0;
    color: #112357;
    margin-bottom: 16px;
}

.footer-link:hover {
    color: #112357;
    background-color: #E3E5E9;
    text-decoration: none;
}

#impressum > .content {
    padding-top: 16px;
    padding-left: 16px;
}

.modal-content {
    border-radius: 0 !important;
}

.modal-header {
    background-color: #112357;
    border-radius: 0 !important;
}

.modal-header > button,
.modal-header > .modal-title {
    color: #F0F0F0;
}

.modal-header > button:hover {
    color: #FFFFFF;
}

#login-error {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    text-align: center;
    color: rgb(114, 28, 36);
    background-color: rgb(248, 215, 218);
    border: 1px solid rgb(245, 198, 203);
    border-radius: 0;
    padding: 10px;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 30px;
}

#login-error.show {
    visibility: visible;
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@keyframes fadein {
    from {top: 0; opacity: 0;}
    to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}

@keyframes fadeout {
    from {top: 30px; opacity: 1;}
    to {top: 0; opacity: 0;}
}