﻿:root {
    --footer-height: 60px;
    --footer-height-mobile: 90px;
}

body {
    overflow-y: auto;
    overflow-x: auto;
}

header {
    height: 50px;
}

.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);
    width: fit-content;
}

.navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: var(--footer-height);
    white-space: nowrap;
}

@media (max-width: 992px) {
    .footer {
        height: var(--footer-height-mobile);
    }
}

div.scrollarea {
    height: calc(100vh - var(--footer-height));
    overflow-x: hidden;
    overflow-y: hidden;
    padding-bottom: 0.5rem;
    bottom: var(--footer-height);
}

@media (max-width: 992px) {
    div .scrollarea {
        height: calc(100vh - var(--footer-height-mobile));
        bottom: var(--footer-height-mobile);
    }
}

footer .nav-link {
    color: rgba(0,0,0,.55)
}

    footer .nav-link:focus, footer .nav-link:hover {
        color: rgba(0,0,0,.7)
    }
